Interface TextTrackUpdateCueEvent

Fired when a cue from the text track is updated.

interface TextTrackUpdateCueEvent {
    cue: TextTrackCue;
    date: Date;
    type: "updatecue";
}

Hierarchy (view full)

  • Event<"updatecue">
    • TextTrackUpdateCueEvent

Properties

Properties

The cue from the text track that is updated.

date: Date

The creation date of the event.

type: "updatecue"

The type of the event.

Generated using TypeDoc