Interface ApiOkResponse<T>

interface ApiOkResponse<T> {
    config?: AxiosRequestConfig;
    data?: T;
    duration?: number;
    headers?: Record<string, string>;
    ok: true;
    originalError: null;
    problem: null;
    status?: number;
}

Type Parameters

  • T

Properties

config?: AxiosRequestConfig
data?: T
duration?: number
headers?: Record<string, string>
ok: true
originalError: null
problem: null
status?: number