Interface ClientResponse<Res>

interface ClientResponse {
    config?: any;
    data: Res;
    headers?: any;
    request?: any;
    response?: any;
    status: number;
    statusText: string;
}

Type Parameters

  • Res

Properties

config?: any
data: Res
headers?: any
request?: any
response?: any
status: number
statusText: string

Generated using TypeDoc