TextTrackCueList
interface TextTrackCueList {
[index: number]: TextTrackCue;
readonly length: number;
[[Symbol.iterator]](): IterableIterator<TextTrackCue>;
getCueById(id: string): TextTrackCue | null;
}var TextTrackCueList: {
prototype: TextTrackCueList;
new (): TextTrackCueList;
};§Index Signatures
§
[index: number]: TextTrackCue
§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.