Skip to main content
Module

x/caldera/deps.ts>Response

🦕 http/https CONNECT tunnel server on top of Deno
Latest
interface Response
Deprecated
Deprecated

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.

import { type Response } from "https://deno.land/x/caldera@v0.1.2/deps.ts";

Properties

optional
status: number
optional
statusText: string
optional
headers: Headers
optional
body: Uint8Array | Deno.Reader | string
optional
trailers: () => Promise<Headers> | Headers