cacophony
    Preparing search index...

    Interface SoundErrorEvent

    Sound error with recovery information.

    interface SoundErrorEvent {
        error: Error;
        errorType: "context" | "unknown" | "load" | "playback";
        recoverable: boolean;
        timestamp: number;
        url?: string;
    }
    Index
    error: Error
    errorType: "context" | "unknown" | "load" | "playback"
    recoverable: boolean
    timestamp: number
    url?: string