How to disable parameter type in jsdoc?
Have a simple typescript method:
public onRowClick(row: TransactionInfo): void {
// some code here
}
if I let idea generate jsdoc by input / * * and press enter then the following comment will be generated:
/**
*
* @param {TransactionInfo} row
*/
How can I disable type of parameter in comment? I.e. I don not want {TransactionInfo} be placed.
Please sign in to leave a comment.
No way; please vote for https://youtrack.jetbrains.com/issue/WEB-28964 to be notified on any progress with this feature
Thank you for answer. Voted!