express-decorated-router
Version:
Define Express routes using TypeScript decorators
20 lines (19 loc) • 1.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./ExpressDecoratedRouter"), exports);
tslib_1.__exportStar(require("./errors/ParentControllerError"), exports);
tslib_1.__exportStar(require("./errors/UnregisteredControllerError"), exports);
tslib_1.__exportStar(require("./decorators/Controller"), exports);
tslib_1.__exportStar(require("./decorators/ControllerMiddleware"), exports);
tslib_1.__exportStar(require("./decorators/Parent"), exports);
tslib_1.__exportStar(require("./decorators/RouteMiddleware"), exports);
tslib_1.__exportStar(require("./decorators/method/ALL"), exports);
tslib_1.__exportStar(require("./decorators/method/DELETE"), exports);
tslib_1.__exportStar(require("./decorators/method/GET"), exports);
tslib_1.__exportStar(require("./decorators/method/HEAD"), exports);
tslib_1.__exportStar(require("./decorators/method/Method"), exports);
tslib_1.__exportStar(require("./decorators/method/OPTIONS"), exports);
tslib_1.__exportStar(require("./decorators/method/PUT"), exports);
tslib_1.__exportStar(require("./decorators/method/POST"), exports);
tslib_1.__exportStar(require("./decorators/method/PATCH"), exports);