Closed
Description
TypeScript Version: 2.2.1
This is a JS only project.
Code
/**
* Test class description.
*
* @export
* @class Tester
*/
export class Tester {
/**
* Creates an instance of Tester.
* @param {any} [params]
*/
constructor (params) {
/**
* Test description 1
* @type {String}
* @description test description 2
*/
this.name = params.name
}
/**
* Test method description
* @memberOf Tester
*/
testMethod () {
}
}
// Then open intellisense for an instance of Tester
const test = new Tester()
test.
Expected behavior:
Show the description, like testMethod:
Should show "Test description 1" or "test description 2"
Actual behavior:
No description is shown for the property name
: