interface HasuraAxiosResponse {
    config: AxiosRequestConfig;
    data: any;
    error?: string;
    headers: any;
    request?: any;
    status: number;
    statusText: string;
}

Hierarchy

  • AxiosResponse
    • HasuraAxiosResponse

Properties

config: AxiosRequestConfig
data: any
error?: string
headers: any
request?: any
status: number
statusText: string