interface Responseimport { type Response } from "https://dotland.deno.dev/std@0.96.0/http/server.ts"; Interface of HTTP server response. If body is a Reader, response would be chunked. If body is a string, it would be UTF-8 encoded by default. Propertiesoptionalstatus: numberoptionalstatusText: stringoptionalheaders: Headersoptionalbody: Uint8Array | Deno.Reader | stringoptionaltrailers: () => Promise<Headers> | Headers