mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
8 lines
258 B
Plaintext
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;
|
|
};
|