thirdparty.d.ts 124 B

1234
  1. declare module "node-fetch" {
  2. function fetch(url: string, options: any): Promise<Response>;
  3. export default fetch;
  4. }