circu.js
    Preparing search index...

    Interface Response

    HTTP response object

    interface Response {
        body?: ArrayBuffer;
        headers: string;
        status: number;
        streamed: boolean;
        text: string;
        url?: string;
    }
    Index

    Properties

    body?: ArrayBuffer

    Raw response body bytes. Omitted in streaming mode.

    headers: string

    Raw response headers

    status: number

    HTTP status code

    streamed: boolean

    Whether streaming mode (body is empty when true)

    text: string

    UTF-8 decoded body text. Empty in streaming mode.

    url?: string

    Final request URL (may differ after redirects)