Mobile Locker JavaScript SDK
    Preparing search index...

    Interface HTTPResponse

    interface HTTPResponse {
        data: unknown;
        headers: Record<string, string>;
        status: number;
        statusText: string;
    }
    Index

    Properties

    data: unknown

    Parsed response body. Type depends on responseType.

    headers: Record<string, string>

    Response headers as a flat key/value map.

    status: number

    HTTP status code.

    statusText: string

    HTTP status text.