| id | AngularDebouncer |
|---|---|
| title | AngularDebouncer |
Defined in: angular-pacer/src/debouncer/injectDebouncer.ts:24
Omit<Debouncer<TFn>,"store">
TFn extends AnyFunction
TSelected = {
}
readonly state: Signal<Readonly<TSelected>>;Defined in: angular-pacer/src/debouncer/injectDebouncer.ts:33
Reactive state signal that will be updated when the debouncer state changes
Use this instead of debouncer.store.state
readonly store: Store<Readonly<DebouncerState<TFn>>>;Defined in: angular-pacer/src/debouncer/injectDebouncer.ts:38
Use debouncer.state instead of debouncer.store.state if you want to read reactive state.
The state on the store object is not reactive in Angular signals.