Interface ApiErrorResponse<U>

interface ApiErrorResponse<U> {
    config?: AxiosRequestConfig<any>;
    data?: U;
    duration?: number;
    headers?: Record<string, string>;
    ok: false;
    originalError: AxiosError<U>;
    problem: PROBLEM_CODE;
    status?: number;
}

Type Parameters

  • U

Properties

config?: AxiosRequestConfig<any>
data?: U
duration?: number
headers?: Record<string, string>
ok: false
originalError: AxiosError<U>
problem: PROBLEM_CODE
status?: number