type SubscribePropsWithSource<TSourceValue, TSelected> =
| SubscribePropsWithSourceIdentity<TSourceValue>
| SubscribePropsWithSourceWithSelector<TSourceValue, TSelected>;Defined in: react-table/src/Subscribe.ts:62
Subscribe to a single source — atom or store (identity or projected). Prefer SubscribePropsWithSourceIdentity or SubscribePropsWithSourceWithSelector for clearer inference when selector is omitted.
TSourceValue
TSelected = TSourceValue