Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/live/deco.ts>RequestContext

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Go to Latest
type alias RequestContext
import { type RequestContext } from "https://deno.land/x/live@1.67.9/deco.ts";
definition: { signal?: AbortSignal; framework?: "fresh" | "htmx"; }
variable RequestContext
import { RequestContext } from "https://deno.land/x/live@1.67.9/deco.ts";

type

{ active: () => unknown; bind: <R, TArgs extends unknown[]>(request: RequestContext, f: (...args: TArgs) => R) => (...args: TArgs) => R; get signal(); get framework(); }