module.exports = class RepeatResultDTO {
/**
* @param repeatResultBool
* @param resultPower 0 - is default action; 1-N move step.
*/
constructor(repeatResultBool = true, resultPower = 0) {
this._resultBool = repeatResultBool;
this._resultPower = resultPower;
this.testVar = true;
}
/**
* @return {boolean}
*/
get resultBool() {
return this._resultBool;
}
/**
* @return {number}
*/
get resultPower() {
return this._resultPower;
}
testMethod()
{
return this.testVar;
}
}
Методы resultPower() и resultBool() также не видны в автокомплите:(