有没有办法描述changeBar
影响实例的bar
属性?
这是文档过多吗?
/**
* @class Foo
* @property {string} bar - class property
*/
class Foo {
constructor() {
this.bar = 'default'
}
/**
* Changes bar status.
*/
changeBar() {
this.bar = 'changed'
}
}