We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6879cb0 + 760a2d9 commit 21d1897Copy full SHA for 21d1897
.gitignore
@@ -6,3 +6,6 @@ dist
6
.cache
7
.parcel-cache
8
.vscode
9
+
10
+# npm pack default output
11
+middleware-axios-0.0.0.tgz
src/index.ts
@@ -15,7 +15,7 @@ export interface Middleware<R> {
15
(
16
requestConfig: AxiosRequestConfig,
17
next: Next<R>,
18
- instanceDefaults: CreateAxiosDefaults,
+ instanceDefaults: AxiosInstance['defaults'],
19
): Promise<void>;
20
}
21
0 commit comments