mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
13 lines
421 B
Plaintext
13 lines
421 B
Plaintext
#import <Speech/SpeechGrammar.idl>
|
|
|
|
// https://wicg.github.io/speech-api/#speechgrammarlist
|
|
[Exposed=Window]
|
|
interface SpeechGrammarList {
|
|
constructor();
|
|
|
|
readonly attribute unsigned long length;
|
|
getter SpeechGrammar item(unsigned long index);
|
|
[FIXME] undefined addFromURI(DOMString src, optional float weight = 1.0);
|
|
[FIXME] undefined addFromString(DOMString string, optional float weight = 1.0);
|
|
};
|