Skip to main content
Module

x/alosaur/src/models/middleware-target.ts

Alosaur - Deno web framework with many decorators
Go to Latest
File
import { Context } from './context.ts';
export interface MiddlewareTarget<TState> { onPreRequest(context: Context<TState>): void; onPostRequest(context: Context<TState>): void;}