Interface TextTrackRemoveCueEvent

Fired when a cue is removed from the text track.

interface TextTrackRemoveCueEvent {
    cue: TextTrackCue;
    date: Date;
    type: "removecue";
}

Hierarchy (view full)

  • Event<"removecue">
    • TextTrackRemoveCueEvent

Properties

Properties

The cue that is removed from the text track.

date: Date

The creation date of the event.

type: "removecue"

The type of the event.

Generated using TypeDoc