@nestjs/swagger
Version:
Nest - modern, fast, powerful node.js web framework (@swagger)
10 lines (9 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiProduces = void 0;
const constants_1 = require("../constants");
const helpers_1 = require("./helpers");
function ApiProduces(...mimeTypes) {
return helpers_1.createMixedDecorator(constants_1.DECORATORS.API_PRODUCES, mimeTypes);
}
exports.ApiProduces = ApiProduces;