Interface PlayEvent

Fired when ChromelessPlayer.paused changes to false.

interface PlayEvent {
    currentTime: number;
    date: Date;
    type: "play";
}

Hierarchy (view full)

Properties

Properties

currentTime: number

The player's current time.

date: Date

The creation date of the event.

type: "play"

The type of the event.