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

8 lines
258 B
Plaintext

// https://wicg.github.io/speech-api/#speechrecognitionphrase
[Exposed=Window]
interface SpeechRecognitionPhrase {
constructor(DOMString phrase, optional float boost = 1.0);
readonly attribute DOMString phrase;
readonly attribute float boost;
};