sublime-jsdocs
sublime-jsdocs copied to clipboard
Variable names are not recognized in Typescript
I have an instance method like this
class C {
m ( foo : any, bar : any){
//do things
}
}
what I get with the DocBlockr is this:
class C {
/**
* @param {any}
* @param {any}
*/
m ( foo : any, bar : any){
//do things
}
}
that is: no param names (foo
and bar
).
Am I doing something wrong?