如何使用JSDoc记录OLOO样式对象?

时间:2019-02-23 09:37:53

标签: javascript jsdoc

Kyle Simpson的OLOO风格与此类似:

let myObject = {
    init: function(){
        // initialize here
    },

    // other methods here
};

let instance = Object.create(myObject); // create instance using "myObject" as prototype
instance.init();    //initialize object

如何使用JSDoc进行记录?在生成的文档中,@class@constructs标签都表示使用new关键字,就像new myObject一样。但是,正如您所看到的,这不是目的。

推荐的方法是什么?

0 个答案:

没有答案