* Set a new value for this thing. * * @param {*} value Value to set
(value: ValueType)
| 40 | * @param {*} value Value to set |
| 41 | */ |
| 42 | set(value: ValueType): void { |
| 43 | if (this.valueForwarder) { |
| 44 | this.valueForwarder(value); |
| 45 | } |
| 46 | |
| 47 | this.notifyOfExternalUpdate(value); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Return the last known value from the underlying thing. |
no test coverage detected