zibri
    Preparing search index...

    Type Alias HttpClientErrorRequestData

    Data of the http request that was sent.

    type HttpClientErrorRequestData = {
        body: unknown;
        headers: Record<string, unknown>;
        method: HttpMethod;
        url: string;
    }
    Index

    Properties

    Properties

    body: unknown

    The body of the request.

    headers: Record<string, unknown>

    The headers of the request.

    method: HttpMethod

    The request method.

    url: string

    The full url of the request.