chore: dgeni tag defintions for ts2dart tags

closes #1833
New `dgeni` tag definitions for `ts2dart` tags which are currently
causing spurious warnings when generating API docs.
This commit is contained in:
Patrice Chalin 2016-07-05 16:58:31 -07:00 committed by Ward Bell
parent fb9edf972e
commit 86f82124d4
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,4 @@
// A ts2dart compiler annotation that can be ignored in API docs.
module.exports = function() {
return { name: 'Annotation', ignore: true };
};

View File

@ -1,9 +1,11 @@
module.exports = [
require('./Annotation'),
require('./deprecated'),
require('./howToUse'),
require('./whatItDoes'),
require('./internal'),
require('./stable'),
require('./ts2dart_const'),
require('./experimental'),
require('./docsNotRequired'),
require('./security'),

View File

@ -0,0 +1,4 @@
// A ts2dart compiler annotation that can be ignored in API docs.
module.exports = function() {
return { name: 'ts2dart_const', ignore: true };
};