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