mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
9 lines
279 B
Plaintext
9 lines
279 B
Plaintext
#import <Speech/SpeechRecognitionResult.idl>
|
|
|
|
// https://wicg.github.io/speech-api/#speechrecognitionresultlist
|
|
[Exposed=Window]
|
|
interface SpeechRecognitionResultList {
|
|
readonly attribute unsigned long length;
|
|
getter SpeechRecognitionResult item(unsigned long index);
|
|
};
|