wasm-posix-host
    Preparing search index...

    Interface HttpResponse

    interface HttpResponse {
        body: Uint8Array;
        headers: Record<string, string>;
        status: number;
    }
    Index

    Properties

    Properties

    body: Uint8Array

    Decoded response body.

    headers: Record<string, string>

    Response headers, with Transfer-Encoding: chunked stripped if the body was already de-chunked here.

    status: number

    Numeric HTTP status code, e.g. 200.