mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
#import <Speech/SpeechRecognitionAlternative.idl>
|
|
|
|
// https://wicg.github.io/speech-api/#speechrecognitionresult
|
|
[Exposed=Window]
|
|
interface SpeechRecognitionResult {
|
|
readonly attribute unsigned long length;
|
|
getter SpeechRecognitionAlternative item(unsigned long index);
|
|
readonly attribute boolean isFinal;
|
|
};
|