* The status of the Updater.
()
| 107 | * The status of the Updater. |
| 108 | */ |
| 109 | get status(): UpdaterStatus { |
| 110 | return this._status; |
| 111 | } |
| 112 | |
| 113 | private set status(value: UpdaterStatus) { |
| 114 | this._status = value; |
nothing calls this directly
no test coverage detected