mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
|
exports.defineTags = function(dictionary) {
|
||
|
dictionary.defineTag('value', {
|
||
|
mustHaveValue: true,
|
||
|
canHaveType: true,
|
||
|
canHaveName: true,
|
||
|
onTagged: function(doclet, tag) {
|
||
|
if (!doclet.values) { doclet.values = []; }
|
||
|
doclet.values.push(tag.value);
|
||
|
}
|
||
|
});
|
||
|
};
|