KeenASR React Native Plugin (v2.2)
    Preparing search index...

    Interface ASRResult

    Recognition result containing the recognized text and word-level details.

    interface ASRResult {
        text: string;
        cleanText: string;
        confidence: number;
        words: ASRWord[];
    }
    Index

    Properties

    text: string

    Full recognized text including any special tokens (e.g., <SPOKEN_NOISE>).

    cleanText: string

    Recognized text without special tokens (e.g., <SPOKEN_NOISE>).

    confidence: number

    Overall confidence score.

    This field is deprecated in the native SDK and should not be relied upon.

    words: ASRWord[]

    An array of ASRWord objects that comprise this result.