Files
ladybird/Libraries/LibWeb/Speech/SpeechSynthesisVoice.idl
2026-01-20 06:51:04 -05:00

10 lines
345 B
Plaintext

// https://wicg.github.io/speech-api/#speechsynthesisvoice
[Exposed=Window]
interface SpeechSynthesisVoice {
readonly attribute DOMString voiceURI;
readonly attribute DOMString name;
readonly attribute DOMString lang;
readonly attribute boolean localService;
[ImplementedAs=is_default] readonly attribute boolean default;
};