Interface SoundErrorEvent

Sound error with recovery information.

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

Properties

error: Error
errorType: "playback" | "load" | "unknown" | "context"
recoverable: boolean
timestamp: number
url?: string