angular-ide
Version:
Provides a seamless integration with the Angular IDE from the command-line for developers looking for an enhanced development experience with Angular.
18 lines (13 loc) • 321 B
JavaScript
class CLEnablementStatusManager {
constructor() {
this.status = true;
}
getStatus() {
return this.status;
}
setStatus(status) {
this.status = status;
}
}
const _CLEnablementStatusManager = new CLEnablementStatusManager();
module.exports.CLEnablementStatusManager = _CLEnablementStatusManager;