Stone.js API
    Preparing search index...

    The options accumulated by the raw-response builder before the FC response is written.

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

    Hierarchy

    • RawResponseOptions
      • AlibabaFcHttpRawResponseOptions

    Indexable

    • [k: string | number | symbol]: unknown
    Index
    body?: string | Buffer<ArrayBufferLike>

    Response body.

    cookies?: string[]

    Set-Cookie values (emitted as repeated set-cookie headers).

    headers?: Record<string, string>

    Response headers.

    status?: number

    HTTP status code.

    statusText?: string

    HTTP status text.