@grabjs/superapp-sdk
    Preparing search index...

    Type Alias DRMPlaybackEvent

    Result object for DRM playback events.

    type DRMPlaybackEvent = {
        length: number;
        position: number;
        titleId: string;
        type:
            | "START_PLAYBACK"
            | "PROGRESS_PLAYBACK"
            | "START_SEEK"
            | "STOP_SEEK"
            | "STOP_PLAYBACK"
            | "CLOSE_PLAYBACK"
            | "PAUSE_PLAYBACK"
            | "RESUME_PLAYBACK"
            | "FAST_FORWARD_PLAYBACK"
            | "REWIND_PLAYBACK"
            | "ERROR_PLAYBACK"
            | "CHANGE_VOLUME";
    }
    Index

    Properties

    length: number

    Length value.

    position: number

    Playback position in milliseconds.

    titleId: string

    Title id value.

    type:
        | "START_PLAYBACK"
        | "PROGRESS_PLAYBACK"
        | "START_SEEK"
        | "STOP_SEEK"
        | "STOP_PLAYBACK"
        | "CLOSE_PLAYBACK"
        | "PAUSE_PLAYBACK"
        | "RESUME_PLAYBACK"
        | "FAST_FORWARD_PLAYBACK"
        | "REWIND_PLAYBACK"
        | "ERROR_PLAYBACK"
        | "CHANGE_VOLUME"

    Playback event type.