Interface TextTrackCueUpdateEvent

Fired when a text track cue is updated.

interface TextTrackCueUpdateEvent {
    cue: TextTrackCue;
    date: Date;
    type: "update";
}

Hierarchy (view full)

  • Event<"update">
    • TextTrackCueUpdateEvent

Properties

Properties

The text track cue that is updated.

date: Date

The creation date of the event.

type: "update"

The type of the event.