Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
type alias EaCRuntimeContext
import { type EaCRuntimeContext } from "https://deno.land/x/fathym_eac_runtime@v0.1.31/src/runtime/EaCRuntimeContext.ts";

Type Parameters

optional
TState = Record<string, unknown>
optional
TData = Record<string, unknown>
definition: { Data: TData; Next: (req?: Request) => Response | Promise<Response>; Params: Record<string, string | undefined>; Render: (data?: TData) => Response | Promise<Response>; Runtime: { ApplicationProcessorConfig: EaCApplicationProcessorConfig; Config: EaCRuntimeConfig; EaC: EaCRuntimeEaC; Info: Deno.ServeHandlerInfo; IoC: IoCContainer; ProjectProcessorConfig: EaCProjectProcessorConfig; Revision: number; URLMatch: URLMatch; }; State: TState; }