Unsubscribes all selector bridges and stops the underlying core store.
()
| 475 | |
| 476 | /** Unsubscribes all selector bridges and stops the underlying core store. */ |
| 477 | teardown(): void { |
| 478 | for (const subscription of this.#subscriptions) { |
| 479 | subscription.unsubscribe(); |
| 480 | } |
| 481 | this.#subscriptions.length = 0; |
| 482 | this.#store.stop(); |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * Subscribes each core selector to its mirroring writable signal. The |
no test coverage detected