Interface TextTrackCueList

List of text track cues.

interface TextTrackCueList {
    length: number;
    item(index): TextTrackCue;
    [index: number]: TextTrackCue;
}

Hierarchy

Indexable

[index: number]: TextTrackCue

Index signature to get the text track cue at the requested index in the list.

Properties

Methods

Properties

length: number

The number of text track cues in the list.

Methods

  • Return the text track cue at the requested index in the list.

    Parameters

    • index: number

      A number representing the index of a text track cue in the list.

    Returns TextTrackCue

    The text track cue with index index in the list.

Generated using TypeDoc