Interface TextTrackReadyStateChangeEvent

Fired when the ready state of the text track has changed.

interface TextTrackReadyStateChangeEvent {
    date: Date;
    readyState: TextTrackReadyState;
    track: TextTrack;
    type: "readystatechange";
}

Hierarchy (view full)

  • Event<"readystatechange">
    • TextTrackReadyStateChangeEvent

Properties

date: Date

The creation date of the event.

The new ready state of the text track.

track: TextTrack

The text track which ready state has changed.

type: "readystatechange"

The type of the event.

Generated using TypeDoc