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:
parent
fb9edf972e
commit
86f82124d4
|
@ -0,0 +1,4 @@
|
|||
// A ts2dart compiler annotation that can be ignored in API docs.
|
||||
module.exports = function() {
|
||||
return { name: 'Annotation', ignore: true };
|
||||
};
|
|
@ -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'),
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
// A ts2dart compiler annotation that can be ignored in API docs.
|
||||
module.exports = function() {
|
||||
return { name: 'ts2dart_const', ignore: true };
|
||||
};
|
Loading…
Reference in New Issue