diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-14 09:23:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 09:23:07 -0400 |
commit | ff60b311299e11d1cf761b29e38ea54ad1744bff (patch) | |
tree | 5605e043c1769991ad0f6d6b9113c56f23c0ddba /cli/js/globals.ts | |
parent | 360c05ffe7fc91058a6c8acd5ea9b4e2ed120946 (diff) |
dedup various type definitions (#4741)
FormData FilePropertyBag DomFile BlobPropertyBag RequestCache
RequestCredentials RequestDestination RequestMode RequestRedirect
ResponseType
Diffstat (limited to 'cli/js/globals.ts')
-rw-r--r-- | cli/js/globals.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/globals.ts b/cli/js/globals.ts index df9724e63..1c34e7297 100644 --- a/cli/js/globals.ts +++ b/cli/js/globals.ts @@ -216,7 +216,7 @@ export const windowOrWorkerGlobalScopeProperties = { URL: nonEnumerable(url.URLImpl), URLSearchParams: nonEnumerable(urlSearchParams.URLSearchParamsImpl), Headers: nonEnumerable(headers.HeadersImpl), - FormData: nonEnumerable(formData.FormData), + FormData: nonEnumerable(formData.FormDataImpl), TextEncoder: nonEnumerable(textEncoding.TextEncoder), TextDecoder: nonEnumerable(textEncoding.TextDecoder), ReadableStream: nonEnumerable(streams.ReadableStream), |