We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a65f6 commit 7b8c967Copy full SHA for 7b8c967
types/index.d.ts
@@ -1,4 +1,4 @@
1
-import { AxiosAdapter, AxiosStatic, AxiosRequestConfig } from 'axios';
+import { AxiosAdapter, AxiosInstance, AxiosRequestConfig } from 'axios';
2
3
type CallbackResponseSpecFunc = (
4
config: AxiosRequestConfig
@@ -55,7 +55,7 @@ type RequestMatcherFunc = (
55
) => MockAdapter.RequestHandler;
56
57
declare class MockAdapter {
58
- constructor(axiosInstance: AxiosStatic, options?: MockAdapterOptions);
+ constructor(axiosInstance: AxiosInstance, options?: MockAdapterOptions);
59
60
adapter(): AxiosAdapter;
61
reset(): void;
0 commit comments