UNPKG

@tsed/common

Version:
23 lines (22 loc) 436 B
/** * Get the Next function (for express application and middleware). * * @decorator * @operation * @input */ export declare function Next(): ParameterDecorator; declare global { namespace TsED { interface NextFunction extends Function { } } } /** * Get the Next function (for express application and middleware). * * @decorator * @operation * @input */ export declare type Next = TsED.NextFunction;