interface WarningEvent {
    code: WarningCode;
    data: {
        [key: string]: any;
    };
    message: string;
    name: string;
    timestamp: number;
    type: PlayerEvent;
}

Hierarchy (view full)

Properties

The warning code used to identify the occurred warning

data: {
    [key: string]: any;
}

Additional data

Type declaration

  • [key: string]: any
message: string

The warning message to explain the reason for the warning

name: string

The warning name to explain the reason for the warning

timestamp: number

The time at which this event was fired

Event type, e.g. 'play'