@edgible-team/sdk
    Preparing search index...

    Interface HttpResponse

    The transport's view of an API response, before error mapping.

    interface HttpResponse {
        body: unknown;
        headers: Record<string, string>;
        status: number;
    }
    Index

    Properties

    Properties

    body: unknown

    Parsed JSON, or raw text for non-JSON bodies.

    headers: Record<string, string>

    Header names lowercased by the transport.

    status: number

    HTTP status code.