Interface VolumeChangeEvent

Fired when an event occurs.

interface VolumeChangeEvent {
    date: Date;
    muted: boolean;
    type: VOLUME_CHANGE;
    volume: number;
}

Hierarchy (view full)

Properties

Properties

date: Date

The creation date of the event.

muted: boolean

The player's muted state.

The type of the event.

volume: number

The player's new volume.

Generated using TypeDoc