WordSearchMatch: {
    count: number;
    indexes: number[];
    text: string;
    timestamps: WordSearchTimestamp[];
}

Type declaration

  • count: number

    The total amount of times the word is in the transcript

  • indexes: number[]

    An array of all index locations for that word within the words array of the completed transcript

  • text: string

    The matched word

  • timestamps: WordSearchTimestamp[]

    An array of timestamps

{
"text": "smoke",
"count": 6,
"timestamps": [
[
250,
650
],
[
49168,
49398
],
[
55284,
55594
],
[
168888,
169118
],
[
215108,
215386
],
[
225944,
226170
]
],
"indexes": [
0,
136,
156,
486,
652,
698
]
}