我在代码中添加了JSDoc注释函数:
/**
* Repeat <tt>str</tt> several times.
* @param {string} str The string to repeat.
* @param {number} [times=1] How many times to repeat the string.
* @returns {string}
*/
当我将鼠标悬停在调用此类函数或浏览时,我希望Visual Studio在我的调用之上呈现文档,如下所示:
或者
这可能吗?