mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
5 lines
124 B
TypeScript
5 lines
124 B
TypeScript
declare module "node-fetch" {
|
|
function fetch(url: string, options: any): Promise<Response>;
|
|
export default fetch;
|
|
}
|