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

5 lines
124 B
TypeScript
Raw Normal View History

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