Skip to content

Commit

Permalink
fix(types): add missing type of AbortController
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed May 11, 2022
1 parent 8515e75 commit cc53eb7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/index.d.ts
@@ -1,10 +1,10 @@
declare const fetch: typeof globalThis.fetch
declare const Blob: typeof globalThis.Blob
declare const File: typeof globalThis.File
declare const FormData: typeof globalThis.FormData
declare const Headers: typeof globalThis.Headers
declare const Request: typeof globalThis.Request
declare const Response: typeof globalThis.Response
export declare const fetch: typeof globalThis.fetch
export declare const Blob: typeof globalThis.Blob
export declare const File: typeof globalThis.File
export declare const FormData: typeof globalThis.FormData
export declare const Headers: typeof globalThis.Headers
export declare const Request: typeof globalThis.Request
export declare const Response: typeof globalThis.Response
export declare const AbortController: typeof globalThis.AbortController

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

0 comments on commit cc53eb7

Please sign in to comment.