trembita
    Preparing search index...

    Type Alias TrembitaFetchOptions

    TrembitaFetchOptions: Readonly<
        {
            body?: unknown;
            expectedCodes?: readonly number[];
            headers?: Readonly<Record<string, string>>;
            method?: string;
            path?: string;
            qs?: Readonly<
                Record<string, string | number | boolean | null | undefined>,
            >;
            query?: Readonly<
                Record<string, string | number | boolean | null | undefined>,
            >;
            signal?: AbortSignal;
            timeoutMs?: number;
            url?: string;
        },
    >