class Bodyimport { Body } from "https://deno.land/x/http_server@v2.0.5/lib/data/body.ts"; ConstructorsnewBody(request: Request)Methodsbuffer(): Promise<ArrayBuffer>Get the request body as an array buffer. form(): Promise<FormData | null>Get the request body as a form data. json(): Promise<unknown>Get the request body as a JSON object. text(): Promise<string>Get the request body as a string.