Defined in: async-throttler/injectAsyncThrottler.ts:12
TFn extends AnyAsyncFunction
TSelected = { }
readonly state: Signal<Readonly<TSelected>>;
Defined in: async-throttler/injectAsyncThrottler.ts:21
Reactive state signal that will be updated when the async throttler state changes
Use this instead of throttler.store.state
readonly store: Store<Readonly<AsyncThrottlerState<TFn>>>;
Defined in: async-throttler/injectAsyncThrottler.ts:26
Use throttler.state instead of throttler.store.state if you want to read reactive state. The state on the store object is not reactive in Angular signals.