Skip to content

Commit 21d1897

Browse files
authored
Merge pull request #42 from krutoo/types-fixes
types-fixes
2 parents 6879cb0 + 760a2d9 commit 21d1897

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ dist
66
.cache
77
.parcel-cache
88
.vscode
9+
10+
# npm pack default output
11+
middleware-axios-0.0.0.tgz

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface Middleware<R> {
1515
(
1616
requestConfig: AxiosRequestConfig,
1717
next: Next<R>,
18-
instanceDefaults: CreateAxiosDefaults,
18+
instanceDefaults: AxiosInstance['defaults'],
1919
): Promise<void>;
2020
}
2121

0 commit comments

Comments
 (0)