Interface SimplifiedHttpErrorResponse

interface SimplifiedHttpErrorResponse {
    error: any;
    errorMessage: string;
    headers: Record<string, string[]>;
    message: string;
    name: string;
    ok: boolean;
    status: number;
    statusText: string;
    type: ResponseHeader | Response;
    url: null | string;
    [key: string]: unknown;
}

Hierarchy

  • Record<string, unknown>
    • SimplifiedHttpErrorResponse

Indexable

  • [key: string]: unknown

Properties

error: any
errorMessage: string
headers: Record<string, string[]>
message: string
name: string
ok: boolean
status: number
statusText: string
type: ResponseHeader | Response
url: null | string