Interface TextTrackExitCueEvent

Fired when a cue of the text track has exited.

interface TextTrackExitCueEvent {
    cue: TextTrackCue;
    date: Date;
    type: "exitcue";
}

Hierarchy (view full)

  • Event<"exitcue">
    • TextTrackExitCueEvent

Properties

Properties

The cue from the text track that has exited.

date: Date

The creation date of the event.

type: "exitcue"

The type of the event.

Generated using TypeDoc