hoshimi
    Preparing search index...

    Interface FetchOptions

    The fetch options for the request.

    interface FetchOptions {
        body?: string;
        headers?: Record<string, string>;
        method?: HttpMethods;
        params?: Record<string, string>;
        pathType?: RestPathType;
        signal: AbortSignal;
    }

    Hierarchy

    Index

    Properties

    body?: string

    The stringified body for the request.

    headers?: Record<string, string>

    The headers for the REST.

    method?: HttpMethods

    The method for the REST.

    params?: Record<string, string>

    The query parameters for the REST.

    pathType?: RestPathType

    The path type for the REST.

    signal: AbortSignal

    The signal for the request.