index.d.mts 483 B

12345678910
  1. export declare const fetch: typeof globalThis.fetch;
  2. export declare const Blob: typeof globalThis.Blob;
  3. export declare const File: typeof globalThis.File;
  4. export declare const FormData: typeof globalThis.FormData;
  5. export declare const Headers: typeof globalThis.Headers;
  6. export declare const Request: typeof globalThis.Request;
  7. export declare const Response: typeof globalThis.Response;
  8. export declare const AbortController: typeof globalThis.AbortController;
  9. export default fetch;