Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.23 KB

File metadata and controls

52 lines (31 loc) · 1.23 KB
id AngularAsyncQueuer
title AngularAsyncQueuer

Interface: AngularAsyncQueuer<TValue, TSelected>

Defined in: angular-pacer/src/async-queuer/injectAsyncQueuer.ts:24

Extends

  • Omit<AsyncQueuer<TValue>, "store">

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

state

readonly state: Signal<Readonly<TSelected>>;

Defined in: angular-pacer/src/async-queuer/injectAsyncQueuer.ts:33

Reactive state signal that will be updated when the async queuer state changes

Use this instead of queuer.store.state


store

readonly store: Store<Readonly<AsyncQueuerState<TValue>>>;

Defined in: angular-pacer/src/async-queuer/injectAsyncQueuer.ts:38

Deprecated

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.