import { ServerRequest } from "https://deno.land/std@0.73.0/http/mod.ts";
Properties
Body of the request. The easiest way to consume the body is:
const buf: Uint8Array = await Deno.readAll(req.body);
conn: Deno.Conn
Value of Content-Length header. If null, then content length is invalid or not given (e.g. chunked encoding).
done: Deferred<Error | undefined>
headers: Headers
r: BufReader
w: BufWriter