kinetex - v1.0.0-rc.1
    Preparing search index...

    Interface HookResponse

    Full response representation passed through lifecycle hooks.

    interface HookResponse {
        status: number;
        statusText: string;
        headers: Record<string, string>;
        body: string | Uint8Array<ArrayBufferLike> | null;
        request: HookRequest;
    }
    Index

    Properties

    status: number

    HTTP status code

    statusText: string

    HTTP status text

    headers: Record<string, string>

    Response headers

    body: string | Uint8Array<ArrayBufferLike> | null

    Response body

    request: HookRequest

    Originating request