@maschinenlesbar.org/regionalstatistik-cli
    Preparing search index...

    Interface HttpRequest

    interface HttpRequest {
        body?: string | Buffer<ArrayBufferLike>;
        headers?: Record<string, string>;
        maxResponseBytes?: number;
        method: string;
        timeoutMs?: number;
        url: string;
    }
    Index
    body?: string | Buffer<ArrayBufferLike>

    Optional request body (already serialised).

    headers?: Record<string, string>
    maxResponseBytes?: number

    Hard cap on the response body size in bytes; the request aborts if exceeded.

    method: string
    timeoutMs?: number

    Timeout for the whole request, response body included, in milliseconds.

    url: string

    Fully-qualified absolute URL.