Interface LoadingErrorEvent

Fired when loading fails.

interface LoadingErrorEvent {
    error: Error;
    errorType: "network" | "abort" | "decode" | "unknown";
    timestamp: number;
    url: string;
}

Properties

error: Error
errorType: "network" | "abort" | "decode" | "unknown"
timestamp: number
url: string