1 | /// <reference lib="dom" />
|
2 |
|
3 | declare const _fetch: typeof fetch;
|
4 | declare const _Request: typeof Request;
|
5 | declare const _Response: typeof Response;
|
6 | declare const _Headers: typeof Headers;
|
7 |
|
8 | declare module "cross-fetch" {
|
9 | export const fetch: typeof _fetch;
|
10 | export const Request: typeof _Request;
|
11 | export const Response: typeof _Response;
|
12 | export const Headers: typeof _Headers;
|
13 | export default fetch;
|
14 | }
|