I defined a @callback as follows:
I use it to define the prototype of my class:
MyClass.prototype._builder = function(name, handler) {
But how to tell JSDoc that the following function has the same definition as my MyClass~Handler (something like @isacallback in the following code)?
MyClass.prototype._defaultHandler = function(target, options) {
source share