如何在一个注释jsdoc上记录几个全局变量

时间:2016-08-26 09:31:07

标签: jsdoc

我刚刚开始使用JSDoc(尝试)开始编写文档。我在js文件的开头有4个全局变量:

var controller = -1,
action = 'none',
maxValue = 0,
URLs = []; 

如何记录初始注释块中的所有内容?到目前为止,我使其工作的唯一方法是以这种方式使用每个变量的块代码:

/**
* Some description.
* @type {number}
*/
var controller = -1,
/**
* Some description.
* @type {string}
*/
action = 'none',
/**
* Some description.
* @type {number}
*/
maxValue = 0,
/**
* Some description.
* @type {array}
*/
URLs = []; 

这是唯一/正确的方法吗?

0 个答案:

没有答案