Skip to main content
Go to Latest
type alias EaCRuntimeContext
Re-export
import { type EaCRuntimeContext } from "https://deno.land/x/fathym_eac_runtime@v0.0.201/mod.ts";

Type Parameters

optional
TState = Record<string, unknown>
optional
TData = Record<string, unknown>
definition: { 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: { Base: string; Hash?: string; Path: string; Search?: string; }; }; State: TState; }