Dispatched when video is resized.

interface VideoResizeEvent {
    date: Date;
    type: VIDEO_RESIZE;
    videoHeight: number;
    videoWidth: number;
}

Hierarchy (view full)

Properties

date: Date

The creation date of the event.

The type of the event.

videoHeight: number

The video's current height.

videoWidth: number

The video's current width.