KoAJAX
    Preparing search index...

    Interface Response<B>

    interface Response<B = Request["body"]> {
        body?: B;
        headers: Record<string, string | object>;
        status: number;
        statusText: string;
    }

    Type Parameters

    Index

    Properties

    body?: B
    headers: Record<string, string | object>
    status: number
    statusText: string