Interface AxiosInterceptorManager<V>

interface AxiosInterceptorManager {
    clear(): void;
    eject(id): void;
    use(onFulfilled?, onRejected?, options?): number;
}

Type Parameters

  • V

Methods

Methods

  • Returns void

  • Parameters

    • id: number

    Returns void

  • Parameters

    • Optional onFulfilled: null | ((value) => V | Promise<V>)
    • Optional onRejected: null | ((error) => any)
    • Optional options: AxiosInterceptorOptions

    Returns number

Generated using TypeDoc