Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.13 KB

File metadata and controls

52 lines (31 loc) · 1.13 KB
id AngularQueuer
title AngularQueuer

Interface: AngularQueuer<TValue, TSelected>

Defined in: angular-pacer/src/queuer/injectQueuer.ts:20

Extends

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

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

state

readonly state: Signal<Readonly<TSelected>>;

Defined in: angular-pacer/src/queuer/injectQueuer.ts:29

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

Use this instead of queuer.store.state


store

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

Defined in: angular-pacer/src/queuer/injectQueuer.ts:34

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.