type alias Contextimport { type Context } from "https://deno.land/x/aleph@1.0.0-beta.40/server/types.ts"; Type ParametersoptionalT 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; }