UNPKG

631 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.exploreApiTagsMetadata = exports.exploreGlobalApiTagsMetadata = void 0;
4const constants_1 = require("../constants");
5const exploreGlobalApiTagsMetadata = (metatype) => {
6 const tags = Reflect.getMetadata(constants_1.DECORATORS.API_TAGS, metatype);
7 return tags ? { tags } : undefined;
8};
9exports.exploreGlobalApiTagsMetadata = exploreGlobalApiTagsMetadata;
10const exploreApiTagsMetadata = (instance, prototype, method) => Reflect.getMetadata(constants_1.DECORATORS.API_TAGS, method);
11exports.exploreApiTagsMetadata = exploreApiTagsMetadata;