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

    Interface RequestOptions

    Options for AbstractService.request. Deliberately narrower than RequestInit: only a string body, headers and signal are honoured (for these legacy endpoints a body must never be percent-encoded), 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