IGPAPI
    Preparing search index...

    Interface TransportResponse

    interface TransportResponse {
        bloks: Buffer;
        body: Buffer;
        headers: Record<string, string | string[]>;
        method: string;
        status: number;
        statusMessage?: string;
        url: string;
    }
    Index

    Properties

    bloks: Buffer

    Raw JSON bytes of { ast, dicts, literals } — Bloks extract attached by the native transport on every response (empty arrays on non-Bloks bodies, detected via quick-scan at near-zero cost).

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