Docs
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
OpenRouter
WorkOS
Clerk
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
OpenRouter
WorkOS
Clerk
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Legacy API Reference
Enterprise

BaseAtoms_All

Type Alias: BaseAtoms_All

ts
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).