I have something like this:
my.namespace.ClassA = function(type) { this.doSomething = function(param){ } }
The class will be displayed in the generated documentation. Function will not be. Is there a way to tell JSDoc (3) that this is a member function of ClassA ?
Chris source share