type BaseAtoms_All = { [K in keyof TableState_All]?: Atom<TableState_All[K]> };type BaseAtoms_All = { [K in keyof TableState_All]?: Atom<TableState_All[K]> };Defined in: core/table/coreTablesFeature.types.ts:53
Internal "all features" flat variants of the atom types. Table_Internal uses these so feature code (written generically over TFeatures) can access any slice atom (e.g. table.atoms.columnPinning) without TypeScript narrowing away slices that aren't in the current TFeatures union.
Keys are optional: feature code can read atoms from slices it doesn't own, but those slices may not be registered on the current table. Consumers must use optional chaining (table.atoms.columnPinning?.get() ?? default).