interface TranscriptionWord {
    end: number;
    start: number;
    word: string;
}

Properties

Properties

end: number

End time of the word in seconds.

start: number

Start time of the word in seconds.

word: string

The text content of the word.