Skip to main content
Module

x/alosaur/src/models/context.ts

Alosaur - Deno web framework with many ES Decorators
Very Popular
Latest
File
import { IImmediatelyResponse, ImmediatelyResponse } from "./response.ts";
/** * Main request/response object of */export class Context<T = any> { public state?: T; public readonly response: IImmediatelyResponse = new ImmediatelyResponse();}