SpeechRecognitionEvent
open class SpeechRecognitionEvent(val type: EventType<SpeechRecognitionEvent>, init: SpeechRecognitionEventInit) : Event(source)
The SpeechRecognitionEvent
interface of the Web Speech API represents the event object for the SpeechRecognition.result_event and SpeechRecognition.nomatch_event events, and contains all the data associated with an interim or final speech recognition result. Available only in secure contexts.
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The resultIndex
read-only property of the SpeechRecognitionEvent interface returns the lowest index value result in the SpeechRecognitionResultList 'array' that has actually changed.
Link copied to clipboard
The results
read-only property of the SpeechRecognitionEvent interface returns a SpeechRecognitionResultList object representing all the speech recognition results for the current session.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard