* Update the value of the signal based on its current value, and * notify any dependents.
(updateFn: (value: T) => T)
| 31 | * notify any dependents. |
| 32 | */ |
| 33 | update(updateFn: (value: T) => T): void; |
| 34 | |
| 35 | /** |
| 36 | * Returns a readonly version of this signal. Readonly signals can be accessed to read their value |
no outgoing calls
no test coverage detected