From a4ea5f9308f942400695cce261291d0a80cd1b02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jimmy=20W=C3=A4rting?= Date: Mon, 7 Mar 2022 11:56:34 +0100 Subject: [PATCH] fix: add missing formdata export to types (#1518) * fix: add missing formdata export to types closes #1517 1517 --- @types/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/@types/index.d.ts b/@types/index.d.ts index 1e36d66cd..2a482f612 100644 --- a/@types/index.d.ts +++ b/@types/index.d.ts @@ -2,6 +2,7 @@ /// 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 | Iterable | Iterable>; export { + FormData, Blob, blobFrom, blobFromSync,