Skip to main content
Module

x/drash/src/interfaces/response_output.ts

A microframework for Deno's HTTP server with zero third-party dependencies
Go to Latest
File
export interface ResponseOutput { body: Uint8Array | string | Deno.Reader; headers: Headers; status: number; status_code?: number; send?: () => ResponseOutput | undefined;}