Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TextTrackCueList

interface TextTrackCueList {
[index: number]: TextTrackCue;
readonly length: number;
[[Symbol.iterator]](): IterableIterator<TextTrackCue>;
getCueById(id: string): TextTrackCue | null;
}
var TextTrackCueList: {
prototype: TextTrackCueList;
}
;

§Index Signatures

§
[index: number]: TextTrackCue

§Properties

§
readonly length: number
[src]

Returns the number of cues in the list.

§Methods

§
[[Symbol.iterator]](): IterableIterator<TextTrackCue>
[src]
§
getCueById(id: string): TextTrackCue | null
[src]

Returns the first text track cue (in text track cue order) with text track cue identifier id.

Returns null if none of the cues have the given identifier or if the argument is the empty string.