File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,39 @@ When assigned to a variable in the exporting module:
70
70
71
71
This syntax is also used when referring to types of ` @typedef ` s and ` @enum ` s.
72
72
73
+ ### ` @link ` tags
74
+
75
+ ``` js
76
+ /**
77
+ * {@link Identifier }
78
+ */
79
+
80
+ /**
81
+ * {@link Identifier Link text}
82
+ */
83
+
84
+ /**
85
+ * {@link Identifier.member }
86
+ */
87
+ ```
88
+
89
+ To:
90
+
91
+ ``` js
92
+ /**
93
+ * {@link module:path/to/module.Identifier Identifier}
94
+ */
95
+
96
+ /**
97
+ * {@link module:path/to/module.Identifier Link text}
98
+ */
99
+
100
+ /**
101
+ * Member accessors are not currently linked to, just the root identifier:
102
+ * {@link module:path/to/module.Identifier Identifier.member}
103
+ */
104
+ ```
105
+
73
106
### ` typeof type `
74
107
75
108
``` js
165
198
```
166
199
167
200
To:
201
+
168
202
``` js
169
203
/**
170
204
* @type {Array}
You can’t perform that action at this time.
0 commit comments