16 lines
234 B
JavaScript
16 lines
234 B
JavaScript
|
|
/**
|
|
* Handle the api annotation.
|
|
* @param {Object} dictionary The tag dictionary.
|
|
*/
|
|
exports.defineTags = dictionary => {
|
|
|
|
dictionary.defineTag('api', {
|
|
onTagged: (doclet, tag) => {
|
|
doclet.api = true;
|
|
}
|
|
});
|
|
|
|
};
|
|
|