import { Context } from "https://deno.land/x/abc@v1.3.1/context.ts";
Constructors
new
Context(opts: ContextOptions)new
Context(c: Context)new
Context(optionsOrContext: ContextOptions | Context)Properties
Methods
Sends a blob response with content type and status code.
file(filepath: string): Promise<void>
get(key: string | symbol): unknown
Sends an HTTP blob response with status code.
redirect(url: string, code?): void
Redirects a response to a specific URL. the code
defaults to 302
if omitted
Renders a template with data and sends a text/html response with status code. renderer must be registered first.
set(key: string | symbol, val: unknown): void