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

    Interface HookRequest

    Full request representation passed through lifecycle hooks.

    interface HookRequest {
        url: string;
        method: HTTPMethod;
        headers: Record<string, string>;
        body: BodyInit;
        signal: AbortSignal | null;
        meta: Record<string, unknown>;
    }
    Index

    Properties

    url: string

    Target URL

    method: HTTPMethod

    HTTP method

    headers: Record<string, string>

    Request headers

    body: BodyInit

    Request body

    signal: AbortSignal | null

    AbortSignal for cancellation

    meta: Record<string, unknown>

    Arbitrary per-request metadata