Defined in: angular-pacer/src/throttler/injectThrottler.ts:24
TFn extends AnyFunction
TSelected = { }
readonly state: Signal<Readonly<TSelected>>;
Defined in: angular-pacer/src/throttler/injectThrottler.ts:33
Reactive state signal that will be updated when the throttler state changes
Use this instead of throttler.store.state
readonly store: Store<Readonly<ThrottlerState<TFn>>>;
Defined in: angular-pacer/src/throttler/injectThrottler.ts:38
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.