Closed wehrstedt closed 5 years ago
You can set the this-reference via "@this" for functions. We need a way to support this, e.g. with functions
/** * @class myClass */ /** * @function myFunc * @this myClass */
Will result in
function myFunc(this: myClass): void;
You can set the this-reference via "@this" for functions. We need a way to support this, e.g. with functions
Will result in