@tsed/common
Version:
A TypeScript Framework on top of Express
20 lines • 520 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Next = void 0;
const ParamTypes_1 = require("../../models/ParamTypes");
const useParam_1 = require("./useParam");
/**
* Get the Next function (for express application and middleware).
*
* @decorator
* @operation
* @input
*/
function Next() {
return useParam_1.UseParam(ParamTypes_1.ParamTypes.NEXT_FN, {
useConverter: false,
useValidation: false
});
}
exports.Next = Next;
//# sourceMappingURL=next.js.map