2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-02 16:04:10 +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> {
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;
}