summaryrefslogtreecommitdiff
path: root/cli/js/web/body.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-04-11 17:19:36 -0400
committerGitHub <noreply@github.com>2020-04-11 17:19:36 -0400
commit637a9ecd6a3f3311601b4de36f6035ae63297f77 (patch)
tree291cf38b77bf2709b538fb4918d753c05511e1f1 /cli/js/web/body.ts
parentda28fc1e7b4551281ad14d49c7fb396010ba0107 (diff)
dedup URLSearchParams, URL, Location, DOMStringList (#4719)
Diffstat (limited to 'cli/js/web/body.ts')
-rw-r--r--cli/js/web/body.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/web/body.ts b/cli/js/web/body.ts
index 7e398a535..472f3fda2 100644
--- a/cli/js/web/body.ts
+++ b/cli/js/web/body.ts
@@ -23,7 +23,7 @@ export type BodySource =
| Blob
| BufferSource
| domTypes.FormData
- | domTypes.URLSearchParams
+ | URLSearchParams
| domTypes.ReadableStream
| string;