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.
 
0
2 comments

No way; please vote for https://youtrack.jetbrains.com/issue/WEB-28964 to be notified on any progress with this feature

1
Avatar
Permanently deleted user

Thank you for answer. Voted!

0

Please sign in to leave a comment.