Closed
Description
From @bigopon on September 19, 2016 5:28
Currently you can do this
/**@type {number} myVar */
var myVar = something
👍 Very cool as sometime intellisense needs help, but we can't do this
class MyClass {
// Not working
/**@type {number} myProp */
myProp
// Not working either
/**@property {number} myProp2 */
myProp2
}
Would be great if supported.
Thanks
Copied from original issue: microsoft/vscode#12240