dtsmake
dtsmake copied to clipboard
JSDoc tag (@param, @return) duplication when it was already defined in the target JavaScript code.
JSDoc tag (@param, @return) duplication when it was already defined in the target JavaScript code.
/**
* any document...
* @param arg already-defined-text
* @param arg
* @return original doc
* @return
*/
function doSomething(param:any):any{
/* ... */
}
Will this bug be fixed?