Interface TextTrackErrorEvent

An error event fired by a TextTrack.

interface TextTrackErrorEvent {
    date: Date;
    error: string;
    errorObject: TextTrackError;
    type: "error";
}

Hierarchy (view full)

Properties

date: Date

The creation date of the event.

error: string

The error that occurred.

Deprecated

use errorObject.message instead

errorObject: TextTrackError

An error object containing additional information about the error.

type: "error"

The type of the event.

Generated using TypeDoc