type BaseAtoms<TFeatures> = { [K in keyof TableState<TFeatures>]-?: Atom<TableState<TFeatures>[K]> };type BaseAtoms<TFeatures> = { [K in keyof TableState<TFeatures>]-?: Atom<TableState<TFeatures>[K]> };Defined in: core/table/coreTablesFeature.types.ts:19
A map of writable atoms, one per TableState slice. These are the internal writable atoms that the library always writes to via makeStateUpdater.
TFeatures extends TableFeatures