Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 86f8212

Browse files
chalinwardbell
authored andcommitted
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.
1 parent fb9edf9 commit 86f8212

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// A ts2dart compiler annotation that can be ignored in API docs.
2+
module.exports = function() {
3+
return { name: 'Annotation', ignore: true };
4+
};

tools/api-builder/angular.io-package/tag-defs/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
module.exports = [
2+
require('./Annotation'),
23
require('./deprecated'),
34
require('./howToUse'),
45
require('./whatItDoes'),
56
require('./internal'),
67
require('./stable'),
8+
require('./ts2dart_const'),
79
require('./experimental'),
810
require('./docsNotRequired'),
911
require('./security'),
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// A ts2dart compiler annotation that can be ignored in API docs.
2+
module.exports = function() {
3+
return { name: 'ts2dart_const', ignore: true };
4+
};

0 commit comments

Comments
 (0)