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 4eb677a commit 393423aCopy full SHA for 393423a
src/lib/fetch.ts
@@ -12,7 +12,7 @@ export const resolveFetch = (customFetch?: Fetch): Fetch => {
12
} else {
13
_fetch = fetch
14
}
15
- return (...args) => _fetch(...args)
+ return (...args: Parameters<Fetch>) => _fetch(...args)
16
17
18
export const resolveHeadersConstructor = () => {
0 commit comments