我正在尝试使用 YUIDoc 为 JavaScript 方法编写一些文档。看起来像:
/**
Returns an instance of className
@method getInstance
@param {string} className the of the class used to create the instance
@param {Object} options these are options used to create the instance
**/
function getInstance(className, options) { ..... }
现在,options 对象可以有多个参数,例如options.id
,options.single
等。
如何将此信息添加到 this 的文档中@param
?