Skip to content

Latest commit

 

History

History
136 lines (79 loc) · 2.81 KB

File metadata and controls

136 lines (79 loc) · 2.81 KB
id AngularTableComputed
title AngularTableComputed

Interface: AngularTableComputed()<TFeatures>

Defined in: injectTable.ts:28

Store mode: pass selector (required) to project from full table state. Source mode: pass source (atom or store); omit selector for the whole value (identity), or pass selector to project. Split overloads match React Subscribe inference.

Type Parameters

TFeatures

TFeatures extends TableFeatures

Call Signature

AngularTableComputed<TSourceValue>(props): Signal<Readonly<TSourceValue>>;

Defined in: injectTable.ts:29

Store mode: pass selector (required) to project from full table state. Source mode: pass source (atom or store); omit selector for the whole value (identity), or pass selector to project. Split overloads match React Subscribe inference.

Type Parameters

TSourceValue

TSourceValue

Parameters

props

equal?

ValueEqualityFn<TSourceValue>

selector?

undefined

source

Atom<TSourceValue> | ReadonlyAtom<TSourceValue>

Returns

Signal<Readonly<TSourceValue>>

Call Signature

AngularTableComputed<TSourceValue, TSubSelected>(props): Signal<Readonly<TSubSelected>>;

Defined in: injectTable.ts:34

Store mode: pass selector (required) to project from full table state. Source mode: pass source (atom or store); omit selector for the whole value (identity), or pass selector to project. Split overloads match React Subscribe inference.

Type Parameters

TSourceValue

TSourceValue

TSubSelected

TSubSelected

Parameters

props

equal?

ValueEqualityFn<TSubSelected>

selector

(state) => TSubSelected

source

Atom<TSourceValue> | ReadonlyAtom<TSourceValue>

Returns

Signal<Readonly<TSubSelected>>

Call Signature

AngularTableComputed<TSubSelected>(props): Signal<Readonly<TSubSelected>>;

Defined in: injectTable.ts:39

Store mode: pass selector (required) to project from full table state. Source mode: pass source (atom or store); omit selector for the whole value (identity), or pass selector to project. Split overloads match React Subscribe inference.

Type Parameters

TSubSelected

TSubSelected

Parameters

props

equal?

ValueEqualityFn<TSubSelected>

selector

(state) => TSubSelected

Returns

Signal<Readonly<TSubSelected>>