spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Variable names are not recognized in Typescript

SimoneMSR opened this issue · comments

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?