AniLink - v1.29.2
    Preparing search index...

    Interface RequestErrorContext

    Context passed to the onError hook when a request ultimately fails.

    interface RequestErrorContext {
        attempt: number;
        method: "GET" | "POST";
        url: string;
    }
    Index
    attempt: number

    The 1-based attempt that failed.

    method: "GET" | "POST"

    The HTTP method of the request.

    url: string

    The URL the request was sent to.