()
| 31 | export class ProgressBar extends EventEmitter implements ProgressBarState { |
| 32 | private _current: number = 0 |
| 33 | public get current() { return this._current } |
| 34 | public set current(value: number) { |
| 35 | this._current = Math.max(value, 0) |
| 36 | this.checkCompleteEvent() |
no test coverage detected