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

    Interface HookError

    Error event raised when a request fails at any stage of the lifecycle.

    interface HookError {
        error: unknown;
        request: HookRequest;
        response: HookResponse | null;
        attempt: number;
    }
    Index

    Properties

    error: unknown

    The error that occurred

    request: HookRequest

    The request that caused the error

    response: HookResponse | null

    Partial response (may be null for network errors)

    attempt: number

    Attempt number when the error occurred