procon-ip - v2.1.2
    Preparing search index...

    Interface RequestOptions

    Options for AbstractService.request. Deliberately narrower than RequestInit: only a string body, headers and signal are honoured (a non-string body such as URLSearchParams would fail inside undici.request() — and, for these legacy endpoints, must never be percent-encoded anyway), plus the raw params query-string shortcut.

    interface RequestOptions {
        body?: string;
        headers?: HeadersInit;
        params?: Record<string, string | number>;
        signal?: AbortSignal | null;
    }
    Index
    body?: string
    headers?: HeadersInit
    params?: Record<string, string | number>
    signal?: AbortSignal | null