| id | AngularAsyncThrottler |
|---|---|
| title | AngularAsyncThrottler |
Defined in: angular-pacer/src/async-throttler/injectAsyncThrottler.ts:25
Omit<AsyncThrottler<TFn>,"store">
TFn extends AnyAsyncFunction
TSelected = {
}
readonly state: Signal<Readonly<TSelected>>;Defined in: angular-pacer/src/async-throttler/injectAsyncThrottler.ts:34
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: angular-pacer/src/async-throttler/injectAsyncThrottler.ts:39
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.