class ServerRequestimport { ServerRequest } from "https://deno.land/std@0.95.0/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()respond(r: Response)