13 lines
355 B
Plaintext
13 lines
355 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.TagDescription = void 0;
|
|
const utils_1 = require("../utils");
|
|
const TagDescription = () => {
|
|
return {
|
|
Tag(tag, ctx) {
|
|
(0, utils_1.validateDefinedAndNonEmpty)('description', tag, ctx);
|
|
},
|
|
};
|
|
};
|
|
exports.TagDescription = TagDescription;
|