在JSDoc中记录类的正确方法

时间:2014-07-01 02:36:06

标签: javascript jsdoc

鉴于

function Just (x) {
    this.some = x;
    this.other = 1;
}

在JSDoc中记录此类的最佳推荐方法是什么? (将x作为string)。

1 个答案:

答案 0 :(得分:1)

/**
 * Creates a new Just.
 * @class
 */

来源:http://usejsdoc.org/tags-class.html