mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
`fetch()` is the type of `globalThis.fetch`; it is not a function which returns a `globalThis.fetch`. Fixes #12351.
5 lines
218 B
TypeScript
5 lines
218 B
TypeScript
export declare var fetch: typeof globalThis.fetch;
|
|
export declare var Headers: typeof globalThis.Headers;
|
|
export declare var Request: typeof globalThis.Request;
|
|
export declare var Response: typeof globalThis.Response;
|