Audio Loom - v0.2.2
    Preparing search index...

    Interface AudioErrorEvent

    Event emitted when an audio error occurs. Subscribe via AudioManager.onError$.

    interface AudioErrorEvent {
        key: string;
        channelId: string | null;
        group: string | null;
        src: string | null;
        error: unknown;
        message: string;
    }
    Index

    Properties

    key: string

    Audio key that caused the error.

    channelId: string | null

    Channel ID, or null if not applicable.

    group: string | null

    Audio group, or null if not applicable.

    src: string | null

    Source URL, or null if not applicable.

    error: unknown

    The error that occurred.

    message: string

    Human-readable error message.