UNPKG

node-web-mvc

Version:
18 lines (17 loc) 593 B
"use strict"; /** * @module ApiIgnore * 忽略文档生成 */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const Target_1 = __importDefault(require("../../servlets/annotations/Target")); const ElementType_1 = __importDefault(require("../../servlets/annotations/annotation/ElementType")); class ApiIgnore { } /** * 标注此控制器不生成文档 */ exports.default = (0, Target_1.default)(ElementType_1.default.TYPE)(ApiIgnore);