UNPKG

encrypted-nestjs

Version:
48 lines 2.23 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.TypedRoute = void 0; var nest = __importStar(require("@nestjs/common")); var TypedRouteInterceptor_1 = require("./internal/TypedRouteInterceptor"); var TypedRoute; (function (TypedRoute) { function Get(path) { return nest.applyDecorators(nest.Get(path), nest.UseInterceptors(new TypedRouteInterceptor_1.TypedRouteInterceptor())); } TypedRoute.Get = Get; function Post(path) { return nest.applyDecorators(nest.Post(path), nest.UseInterceptors(new TypedRouteInterceptor_1.TypedRouteInterceptor())); } TypedRoute.Post = Post; function Patch(path) { return nest.applyDecorators(nest.Patch(path), nest.UseInterceptors(new TypedRouteInterceptor_1.TypedRouteInterceptor())); } TypedRoute.Patch = Patch; function Put(path) { return nest.applyDecorators(nest.Put(path), nest.UseInterceptors(new TypedRouteInterceptor_1.TypedRouteInterceptor())); } TypedRoute.Put = Put; function Delete(path) { return nest.applyDecorators(nest.Delete(path), nest.UseInterceptors(new TypedRouteInterceptor_1.TypedRouteInterceptor())); } TypedRoute.Delete = Delete; })(TypedRoute = exports.TypedRoute || (exports.TypedRoute = {})); //# sourceMappingURL=TypedRoute.js.map