Stone.js API
    Preparing search index...

    The options accumulated by the raw-response builder before a Web Response is produced.

    interface FetchRawResponseOptions {
        body?: BodyInit;
        cookies?: string[];
        headers?: Record<string, string>;
        status?: number;
        statusText?: string;
        [k: string | number | symbol]: unknown;
    }

    Hierarchy

    • RawResponseOptions
      • FetchRawResponseOptions

    Indexable

    • [k: string | number | symbol]: unknown
    Index
    body?: BodyInit

    Response body.

    cookies?: string[]

    Set-Cookie values (emitted as repeated headers).

    headers?: Record<string, string>

    Response headers.

    status?: number

    HTTP status code.

    statusText?: string

    HTTP status text.