Files
outline/server/typings/fetch-with-proxy.d.ts
Tom Moor 5c07694f6b Refactor 'uploadFromUrl' to base storage implementation
Add safety around using fetch implementation
2023-08-20 13:13:17 -04:00

7 lines
151 B
TypeScript

declare module "fetch-with-proxy" {
// eslint-disable-next-line no-restricted-imports
import nodeFetch from "node-fetch";
export = nodeFetch;
}