type ExternalAtoms<TFeatures> = Partial<{ [K in keyof TableState<TFeatures>]: Atom<TableState<TFeatures>[K]> }>;type ExternalAtoms<TFeatures> = Partial<{ [K in keyof TableState<TFeatures>]: Atom<TableState<TFeatures>[K]> }>;Defined in: core/table/coreTablesFeature.types.ts:39
A map of optional external atoms, one per TableState slice. Consumers can provide their own writable atom for any state slice to take over ownership of that slice.
TFeatures extends TableFeatures