Response to an API call.

interface APIResponse {
    headers: Record<string, string>;
    json?: any;
    status: number;
    text: string;
}

Properties

headers: Record<string, string>
json?: any
status: number
text: string