(getCurrent: () => Current, subscribe: () => void)
| 131 | readonly #sub: () => void; |
| 132 | |
| 133 | constructor(getCurrent: () => Current, subscribe: () => void) { |
| 134 | this.#get = getCurrent; |
| 135 | this.#sub = subscribe; |
| 136 | } |
| 137 | |
| 138 | get current(): Current { |
| 139 | this.#sub(); |
nothing calls this directly
no outgoing calls
no test coverage detected