summaryrefslogtreecommitdiff
path: root/u/server/http/body.ts
diff options
context:
space:
mode:
Diffstat (limited to 'u/server/http/body.ts')
-rw-r--r--u/server/http/body.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/u/server/http/body.ts b/u/server/http/body.ts
deleted file mode 100644
index 5fc4caa..0000000
--- a/u/server/http/body.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-export type Body =
- | ArrayBuffer
- | AsyncIterable<Uint8Array>
- | Blob
- | FormData
- | Iterable<Uint8Array>
- | NodeJS.ArrayBufferView
- | URLSearchParams
- | null
- | string;