Interface TextTrackCueExitEvent

Fired when a text track cue is exited.

interface TextTrackCueExitEvent {
    cue: TextTrackCue;
    date: Date;
    type: "exit";
}

Hierarchy (view full)

  • Event<"exit">
    • TextTrackCueExitEvent

Properties

Properties

The text track cue that is exited.

date: Date

The creation date of the event.

type: "exit"

The type of the event.