We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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;