Interface HttpResponse<R>

interface HttpResponse<R> {
    body: null | R;
    headers: Record<string, string | string[]>;
    status: number;
    statusText: string;
    url: null | string;
}

Type Parameters

  • R

Properties

body: null | R
headers: Record<string, string | string[]>
status: number
statusText: string
url: null | string