@tsed/common
Version:
A TypeScript Framework on top of Express
23 lines (22 loc) • 436 B
TypeScript
/**
* 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;