Emitted when an active subtitle entry transitions into the inactive status.

interface CueExitEvent {
    end: number;
    name: string;
    start: number;
    text?: string;
    timestamp: number;
}

Hierarchy (view full)

Properties

end: number

The playback time in seconds when the subtitle should be hidden.

name: string

This event name as it is on the native side.

start: number

The playback time in seconds when the subtitle should be rendered.

text?: string

The textual content of this subtitle.

timestamp: number

The UNIX timestamp in which this event happened.