type SubscribeProps<TFeatures, TSelected, TSourceValue> =
| SubscribePropsWithStore<TFeatures, TSelected>
| SubscribePropsWithSourceIdentity<TSourceValue>
| SubscribePropsWithSourceWithSelector<TSourceValue, TSelected>;Defined in: types.ts:160
TFeatures extends TableFeatures
TSelected = unknown
TSourceValue = unknown