【发布时间】:2017-06-14 23:31:41
【问题描述】:
我有这种风格的函数:
/**
* Here is my jsdoc comment
*/
Controller.add = function(req, res, next){}
我的问题是 jsdoc 忽略了这个 cmets。我只是得到这样的功能的文档:
/**
* Here is my jsdoc comment (which works fine)
*/
function add(req, res, next){}
我错过了配置吗?文档doc 没有给我有用的信息。
谢谢
【问题讨论】:
标签: javascript jsdoc jsdoc3