class ServerRequestimport { ServerRequest } from "https://deno.land/x/alosaur@v0.30.0/src/deps.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)