UNPKG

146 BTypeScriptView Raw
1import { ContextInterface } from '../Interface';
2export interface MiddlewareInterface {
3 pass(ctx?: ContextInterface, next?: Function): any;
4}