HttpError
type HttpError = Error & {
data?: unknown;
response?: HttpResponse<unknown>;
status?: number;
statusText?: string;
};
HTTP error with status code and response data
Type Declaration
| Name | Type |
|---|---|
data? | unknown |
response? | HttpResponse<unknown> |
status? | number |
statusText? | string |