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, 10 insertions, 0 deletions
diff --git a/u/server/http/body.ts b/u/server/http/body.ts
new file mode 100644
index 0000000..5fc4caa
--- /dev/null
+++ b/u/server/http/body.ts
@@ -0,0 +1,10 @@
+export type Body =
+ | ArrayBuffer
+ | AsyncIterable<Uint8Array>
+ | Blob
+ | FormData
+ | Iterable<Uint8Array>
+ | NodeJS.ArrayBufferView
+ | URLSearchParams
+ | null
+ | string;