Interface TextTrackEnterCueEvent

Fired when a cue of the text track has entered.

interface TextTrackEnterCueEvent {
    cue: TextTrackCue;
    date: Date;
    type: "entercue";
}

Hierarchy (view full)

  • Event<"entercue">
    • TextTrackEnterCueEvent

Properties

Properties

The cue from the text track that has entered.

date: Date

The creation date of the event.

type: "entercue"

The type of the event.