Skip to content

Commit

Permalink
fix: add missing formdata export to types (#1518)
Browse files Browse the repository at this point in the history
* fix: add missing formdata export to types

closes #1517 1517
  • Loading branch information
jimmywarting committed Mar 7, 2022
1 parent 61b3b5a commit a4ea5f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions @types/index.d.ts
Expand Up @@ -2,6 +2,7 @@
/// <reference lib="dom" />

import {RequestOptions} from 'http';
import {FormData} from 'formdata-polyfill/esm.min.js';
import {
Blob,
blobFrom,
Expand All @@ -21,6 +22,7 @@ type AbortSignal = {
export type HeadersInit = Headers | Record<string, string> | Iterable<readonly [string, string]> | Iterable<Iterable<string>>;

export {
FormData,
Blob,
blobFrom,
blobFromSync,
Expand Down

0 comments on commit a4ea5f9

Please sign in to comment.