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:
7070
7171This syntax is also used when referring to types of ` @typedef ` s and ` @enum ` s.
7272
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+
73106### ` typeof type `
74107
75108``` js
165198```
166199
167200To:
201+
168202``` js
169203/**
170204 * @type {Array}
You can’t perform that action at this time.
0 commit comments