class ServerRequestimport { ServerRequest } from "https://deno.land/x/abc@v1.3.1/vendor/https/deno.land/std/http/server.ts"; Propertiesreadonlybody: Deno.ReaderBody of the request. The easiest way to consume the body is: const buf: Uint8Array = await readAll(req.body); conn: Deno.ConnreadonlycontentLength: number | nullValue of Content-Length header. If null, then content length is invalid or not given (e.g. chunked encoding). readonlydone: Promise<Error | undefined>headers: Headersmethod: stringproto: stringprotoMajor: numberprotoMinor: numberr: BufReaderurl: stringw: BufWriterMethodsfinalize(): Promise<void>respond(r: Response): Promise<void>