UNPKG

560 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.ApiOperation = void 0;
4const lodash_1 = require("lodash");
5const constants_1 = require("../constants");
6const helpers_1 = require("./helpers");
7const defaultOperationOptions = {
8 summary: ''
9};
10function ApiOperation(options) {
11 return helpers_1.createMethodDecorator(constants_1.DECORATORS.API_OPERATION, lodash_1.pickBy(Object.assign(Object.assign({}, defaultOperationOptions), options), lodash_1.negate(lodash_1.isUndefined)));
12}
13exports.ApiOperation = ApiOperation;