boundfetch
    Preparing search index...

    Interface FetcherRequest

    interface FetcherRequest {
        body: string | undefined;
        headers: Record<string, string>;
        method: HttpMethod;
        redirect: RequestRedirect;
        signal: AbortSignal;
        url: string;
    }
    Index

    Properties

    body: string | undefined
    headers: Record<string, string>
    method: HttpMethod
    redirect: RequestRedirect
    signal: AbortSignal
    url: string