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