Interface PauseEvent

Fired when ChromelessPlayer.paused changes to true.

interface PauseEvent {
    currentTime: number;
    date: Date;
    type: "pause";
}

Hierarchy (view full)

Properties

Properties

currentTime: number

The player's current time.

date: Date

The creation date of the event.

type: "pause"

The type of the event.