fix: add missing formdata export to types (#1518)

* fix: add missing formdata export to types

closes #1517 1517
This commit is contained in:
Jimmy Wärting 2022-03-07 11:56:34 +01:00 committed by GitHub
parent 61b3b5a063
commit a4ea5f9308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

2
@types/index.d.ts vendored
View File

@ -2,6 +2,7 @@
/// <reference lib="dom" />
import {RequestOptions} from 'http';
import {FormData} from 'formdata-polyfill/esm.min.js';
import {
Blob,
blobFrom,
@ -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,