我想知道如何使用 JSDoc 记录 jQuery 插件?我的代码是:
/**
* The default configurations of comments
* @typedef {Object} CommentConfig
...
*/
/**
* Show comments
* @method comments
* @version 1.0.1
* @param {CommentConfig} options Configuration of comment
*/
$.fn.comments = function (options) {
// ..
}
我想要@method
,$.fn.comments
但它不起作用。