Interface TextTrackAddCueEvent

Fired when a cue is added to the text track.

interface TextTrackAddCueEvent {
    cue: TextTrackCue;
    date: Date;
    type: "addcue";
}

Hierarchy (view full)

  • Event<"addcue">
    • TextTrackAddCueEvent

Properties

Properties

The cue that is added to the text track.

date: Date

The creation date of the event.

type: "addcue"

The type of the event.

Generated using TypeDoc