fix compile errors for fetch-likes

This commit is contained in:
mrjvs
2023-09-27 19:50:55 +02:00
parent 2a2a3adc24
commit f53a0c52a0
4 changed files with 7 additions and 7 deletions

View File

@@ -278,7 +278,7 @@ async function processOptions(options: CommandLineArguments) {
let fetcher;
if (options.fetcher === 'native') {
fetcher = makeStandardFetcher(fetch as any);
fetcher = makeStandardFetcher(fetch);
} else {
fetcher = makeStandardFetcher(nodeFetch);
}