File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Valid [JSDoc 3 Block Tags](http://usejsdoc.org/#block-tags) are:
88abstract
99access
1010alias
11+ async
1112augments
1213author
1314borrows
@@ -28,6 +29,7 @@ external
2829file
2930fires
3031function
32+ generator
3133global
3234hideconstructor
3335ignore
4850name
4951namespace
5052override
53+ package
5154param
5255private
5356property
6871typedef
6972variation
7073version
74+ yields
7175```
7276
7377|||
Original file line number Diff line number Diff line change @@ -674,6 +674,7 @@ Valid [JSDoc 3 Block Tags](http://usejsdoc.org/#block-tags) are:
674674abstract
675675access
676676alias
677+ async
677678augments
678679author
679680borrows
@@ -694,6 +695,7 @@ external
694695file
695696fires
696697function
698+ generator
697699global
698700hideconstructor
699701ignore
@@ -714,6 +716,7 @@ module
714716name
715717namespace
716718override
719+ package
717720param
718721private
719722property
734737typedef
735738variation
736739version
740+ yields
737741```
738742
739743|||
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export default {
4545 'func' ,
4646 'method'
4747 ] ,
48+ generator : [ ] ,
4849 global : [ ] ,
4950 hideconstructor : [ ] ,
5051 ignore : [ ] ,
@@ -67,6 +68,7 @@ export default {
6768 name : [ ] ,
6869 namespace : [ ] ,
6970 override : [ ] ,
71+ package : [ ] ,
7072 param : [
7173 'arg' ,
7274 'argument'
@@ -95,5 +97,8 @@ export default {
9597 type : [ ] ,
9698 typedef : [ ] ,
9799 variation : [ ] ,
98- version : [ ]
100+ version : [ ] ,
101+ yields : [
102+ 'yield'
103+ ]
99104} ;
You can’t perform that action at this time.
0 commit comments