Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/aleph/server/types.ts>Context

The Full-stack Framework in Deno.
Very Popular
Go to Latest
type alias Context
import { type Context } from "https://deno.land/x/aleph@1.0.0-beta.40/server/types.ts";

Type Parameters

optional
T extends Record<string, unknown> = Record<string, unknown>
definition: T & { readonly connInfo?: ConnInfo; readonly params: Record<string, string>; readonly cookies: Cookies; readonly htmlRewriter: HTMLRewriter; getSession: <T extends Record<string, unknown> = Record<string, unknown>>() => Promise<Session<T>>; next: () => Promise<Response> | Response; }