File tree Expand file tree Collapse file tree 1 file changed +39
-4
lines changed Expand file tree Collapse file tree 1 file changed +39
-4
lines changed Original file line number Diff line number Diff line change 11/* @internal */
22namespace ts . JsDoc {
33 const jsDocTagNames = [
4+ "abstract" ,
5+ "access" ,
6+ "alias" ,
7+ "argument" ,
8+ "async" ,
49 "augments" ,
510 "author" ,
6- "argument" ,
711 "borrows" ,
812 "callback" ,
913 "class" ,
14+ "classDesc" ,
1015 "constant" ,
1116 "constructor" ,
1217 "constructs" ,
18+ "copyright" ,
1319 "default" ,
1420 "deprecated" ,
1521 "description" ,
22+ "emits" ,
23+ "enum" ,
1624 "event" ,
1725 "example" ,
26+ "exports" ,
1827 "extends" ,
28+ "external" ,
1929 "field" ,
30+ "file" ,
2031 "fileOverview" ,
32+ "fires" ,
2133 "function" ,
34+ "generator" ,
35+ "global" ,
36+ "hideConstructor" ,
37+ "host" ,
2238 "ignore" ,
39+ "implements" ,
2340 "inheritDoc" ,
2441 "inner" ,
42+ "instance" ,
43+ "interface" ,
44+ "kind" ,
2545 "lends" ,
26- "link" ,
46+ "license" ,
47+ "listens" ,
48+ "member" ,
2749 "memberOf" ,
2850 "method" ,
51+ "mixes" ,
52+ "module" ,
2953 "name" ,
3054 "namespace" ,
55+ "override" ,
56+ "package" ,
3157 "param" ,
3258 "private" ,
33- "prop" ,
3459 "property" ,
60+ "protected" ,
3561 "public" ,
62+ "readonly" ,
3663 "requires" ,
3764 "returns" ,
3865 "see" ,
3966 "since" ,
4067 "static" ,
68+ "summary" ,
4169 "template" ,
70+ "this" ,
4271 "throws" ,
72+ "todo" ,
73+ "tutorial" ,
4374 "type" ,
4475 "typedef" ,
45- "version"
76+ "var" ,
77+ "variation" ,
78+ "version" ,
79+ "virtual" ,
80+ "yields"
4681 ] ;
4782 let jsDocTagNameCompletionEntries : CompletionEntry [ ] ;
4883 let jsDocTagCompletionEntries : CompletionEntry [ ] ;
You can’t perform that action at this time.
0 commit comments