type SubscribePropsWithStore<TFeatures, TSelected> = object;Defined in: Subscribe.ts:18
Subscribe to table.store (full table state). The selector receives the full TableState.
TFeatures extends TableFeatures
TSelected
children: (state) => ComponentChildren | ComponentChildren;Defined in: Subscribe.ts:31
selector: (state) => TSelected;Defined in: Subscribe.ts:30
Select from full table state. Re-renders when the selected value changes (shallow compare).
Required in store mode so you never accidentally subscribe to the whole store without an explicit projection.
TableState<TFeatures>
TSelected
source: SubscribeSource<TableState<TFeatures>>;Defined in: Subscribe.ts:22