blob: 957b5c85a627966e0ae4e9e41f3c75e92bbfbcd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = SpeechRecognitionAlternative , typescript_type = "SpeechRecognitionAlternative")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `SpeechRecognitionAlternative` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionAlternative)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SpeechRecognitionAlternative`*"]
pub type SpeechRecognitionAlternative;
# [wasm_bindgen (structural , method , getter , js_class = "SpeechRecognitionAlternative" , js_name = transcript)]
#[doc = "Getter for the `transcript` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionAlternative/transcript)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SpeechRecognitionAlternative`*"]
pub fn transcript(this: &SpeechRecognitionAlternative) -> String;
# [wasm_bindgen (structural , method , getter , js_class = "SpeechRecognitionAlternative" , js_name = confidence)]
#[doc = "Getter for the `confidence` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionAlternative/confidence)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SpeechRecognitionAlternative`*"]
pub fn confidence(this: &SpeechRecognitionAlternative) -> f32;
}
|