mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
10 lines
345 B
Plaintext
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;
|
|
};
|