It seems that ESDOC targets only ES6 class style.
Is there a way to document a plain object like:
/**
* ???
*/
var Foo = {
/**
* ???
*/
info: true
};
export default Foo;
And even when using ES6 class style, how to document a static property like:
class Bar {
}
/**
* ???
*/
Bar.info = true;
export default Bar;