Data associated with playback error events.

interface RNPlaybackErrorData {
    code: string;
    logs?: string;
    message: string;
}

Properties

Properties

code: string

Error code identifying the type of error.

logs?: string

Additional error logs or details.

message: string

Human-readable error message.