summaryrefslogtreecommitdiff
path: root/u/server/http/body.ts
blob: 5fc4caa41ff5c44d6bccf189672b57cffbeb4efe (plain)
1
2
3
4
5
6
7
8
9
10
export type Body =
    | ArrayBuffer
    | AsyncIterable<Uint8Array>
    | Blob
    | FormData
    | Iterable<Uint8Array>
    | NodeJS.ArrayBufferView
    | URLSearchParams
    | null
    | string;