Jsdoc @link not working

Im using jsdoc 3.4.3 and I tried using @link to link to the internal @typedef that was executed

/**
 * @typedef {Object} Color
 * @property {string} [attr] - attribute name corresponding to an outcome event
 */

/**
 * @typedef {Object} Config
 * ..
 * ..
 * ..
 * @property {Color} [l.lC=Color] - coloring specification for the nodes as defined in {@link Color}
 * @property {Color} [l.nC=Color] - coloring specification for the links as defined in {@link Color}
 */

this is the javascript file documentation. can anyone see the problem (or find out about a known problem with @link)

+4
source share

Source: https://habr.com/ru/post/1667166/


All Articles