sublime-jsdocs icon indicating copy to clipboard operation
sublime-jsdocs copied to clipboard

Variable names are not recognized in Typescript

Open SimoneMSR opened this issue 6 years ago • 0 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?

SimoneMSR avatar Sep 19 '18 16:09 SimoneMSR