2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-20 20:00:40 +03:00

Merge pull request #1165 from psachs21/patch-1

Updating typings
This commit is contained in:
Nick Uraltsev
2017-11-11 12:20:54 -08:00
committed by GitHub
Vendored
+1 -1
View File
@@ -92,7 +92,7 @@ export interface CancelTokenSource {
} }
export interface AxiosInterceptorManager<V> { export interface AxiosInterceptorManager<V> {
use(onFulfilled: (value: V) => V | Promise<V>, onRejected?: (error: any) => any): number; use(onFulfilled?: (value: V) => V | Promise<V>, onRejected?: (error: any) => any): number;
eject(id: number): void; eject(id: number): void;
} }