@karmaniverous/cached-axios
    Preparing search index...

    Interface AxiosError<T, D>

    interface AxiosError<T = unknown, D = any> {
        cause?: Error;
        code?: string;
        config?: InternalAxiosRequestConfig<D>;
        isAxiosError: boolean;
        message: string;
        name: string;
        request?: any;
        response?: AxiosResponse<T, D>;
        stack?: string;
        status?: number;
        toJSON: () => object;
    }

    Type Parameters

    • T = unknown
    • D = any

    Hierarchy

    Index

    Properties

    cause?: Error
    code?: string
    config?: InternalAxiosRequestConfig<D>
    isAxiosError: boolean
    message: string
    name: string
    request?: any
    response?: AxiosResponse<T, D>
    stack?: string
    status?: number
    toJSON: () => object