ethers.js/packages/web/thirdparty.d.ts

5 lines
124 B
TypeScript
Raw Permalink Normal View History

declare module "node-fetch" {
function fetch(url: string, options: any): Promise<Response>;
export default fetch;
2019-05-14 18:25:46 -04:00
}