Interface SpeechRecognitionResult

    interface SpeechRecognitionResult {
        isFinal: boolean;
        length: number;
        [iterator](): ArrayIterator<SpeechRecognitionAlternative>;
        item(index: number): SpeechRecognitionAlternative;
        [index: number]: SpeechRecognitionAlternative;
    }

    Indexable

    Properties

    Methods

    Properties

    isFinal: boolean
    length: number

    Methods