Defined in: async-batcher/injectAsyncBatcher.ts:11
TValue
TSelected = { }
readonly state: Signal<Readonly<TSelected>>;
Defined in: async-batcher/injectAsyncBatcher.ts:20
Reactive state signal that will be updated when the async batcher state changes
Use this instead of batcher.store.state
readonly store: Store<Readonly<AsyncBatcherState<TValue>>>;
Defined in: async-batcher/injectAsyncBatcher.ts:25
Use batcher.state instead of batcher.store.state if you want to read reactive state. The state on the store object is not reactive in Angular signals.