IGPAPI
    Preparing search index...

    Interface JsonHttpResponse<T>

    interface JsonHttpResponse<T = unknown> {
        body: T;
        headers: Record<string, string | string[]>;
        method: string;
        status: number;
        statusMessage?: string;
        url: string;
    }

    Type Parameters

    • T = unknown

    Hierarchy

    Index

    Properties

    body: T
    headers: Record<string, string | string[]>
    method: string
    status: number
    statusMessage?: string
    url: string