(
getCurrent: () => Current,
setCurrent: (value: Next) => void,
subscribe: () => void,
)
| 145 | readonly #set: (value: Next) => void; |
| 146 | |
| 147 | constructor( |
| 148 | getCurrent: () => Current, |
| 149 | setCurrent: (value: Next) => void, |
| 150 | subscribe: () => void, |
| 151 | ) { |
| 152 | super(getCurrent, subscribe); |
| 153 | this.#set = setCurrent; |
| 154 | } |
| 155 | |
| 156 | get current(): Current { |
| 157 | return super.current; |
nothing calls this directly
no outgoing calls
no test coverage detected