SpeechRecognitionResultList

The SpeechRecognitionResultList interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in SpeechRecognition.continuous mode. Available only in secure contexts.

MDN Reference

Properties

Link copied to clipboard
open override val length: Int

The length read-only property of the 'array' — the number of SpeechRecognitionResult objects in the list.

Functions

Link copied to clipboard
open operator fun get(index: Int): SpeechRecognitionResult
open operator fun get(key: Symbol.iterator): () -> JsIterator<SpeechRecognitionResult>
Link copied to clipboard

The item getter of the syntax.

Link copied to clipboard
open inline operator fun iterator(): Iterator<SpeechRecognitionResult>