Skip to content

Commit cc53eb7

Browse files
committed
fix(types): add missing type of AbortController
1 parent 8515e75 commit cc53eb7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
declare const fetch: typeof globalThis.fetch
2-
declare const Blob: typeof globalThis.Blob
3-
declare const File: typeof globalThis.File
4-
declare const FormData: typeof globalThis.FormData
5-
declare const Headers: typeof globalThis.Headers
6-
declare const Request: typeof globalThis.Request
7-
declare const Response: typeof globalThis.Response
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
89

9-
export { fetch, Blob, File, FormData, Headers, Request, Response }
1010
export default fetch

0 commit comments

Comments
 (0)