Docs
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
OpenRouter
Neon
WorkOS
Clerk
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
OpenRouter
Neon
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
Enterprise
Table API Reference

AppAngularTable

Type Alias: AppAngularTable<TFeatures, TData, TSelected, TTableComponents, TCellComponents, THeaderComponents>

ts
type AppAngularTable<TFeatures, TData, TSelected, TTableComponents, TCellComponents, THeaderComponents> = AngularTable<TFeatures, TData, TSelected> & NoInfer<TTableComponents> & object;
type AppAngularTable<TFeatures, TData, TSelected, TTableComponents, TCellComponents, THeaderComponents> = AngularTable<TFeatures, TData, TSelected> & NoInfer<TTableComponents> & object;

Defined in: helpers/createTableHook.ts:243

Extended table API returned by useAppTable with all App wrapper components

Type Declaration

appCell()

ts
appCell: <TValue>(cell) => Cell<TFeatures, TData, TValue> & NoInfer<TCellComponents>;
appCell: <TValue>(cell) => Cell<TFeatures, TData, TValue> & NoInfer<TCellComponents>;

Type Parameters

TValue

TValue

Parameters

cell

Cell<TFeatures, TData, TValue>

Returns

Cell<TFeatures, TData, TValue> & NoInfer<TCellComponents>

appFooter()

ts
appFooter: <TValue>(footer) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;
appFooter: <TValue>(footer) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;

Type Parameters

TValue

TValue

Parameters

Header<TFeatures, TData, TValue>

Returns

Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>

appHeader()

ts
appHeader: <TValue>(header) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;
appHeader: <TValue>(header) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;

Type Parameters

TValue

TValue

Parameters

Header<TFeatures, TData, TValue>

Returns

Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

TSelected

TSelected

TTableComponents

TTableComponents extends Record<string, RenderableComponent>

TCellComponents

TCellComponents extends Record<string, RenderableComponent>

THeaderComponents

THeaderComponents extends Record<string, RenderableComponent>