Interface WordInfo

Information about a single recognized word.

interface WordInfo {
    endOffset?: string;
    startOffset?: string;
    word?: string;
}

Properties

endOffset?: string

End offset in time of the word relative to the start of the audio.

startOffset?: string

Start offset in time of the word relative to the start of the audio.

word?: string

Transcript of the word.