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
appCell: <TValue>(cell) => Cell<TFeatures, TData, TValue> & NoInfer<TCellComponents>;appCell: <TValue>(cell) => Cell<TFeatures, TData, TValue> & NoInfer<TCellComponents>;TValue
Cell<TFeatures, TData, TValue>
Cell<TFeatures, TData, TValue> & NoInfer<TCellComponents>
appFooter: <TValue>(footer) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;appFooter: <TValue>(footer) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;TValue
Header<TFeatures, TData, TValue>
Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>
appHeader: <TValue>(header) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;appHeader: <TValue>(header) => Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>;TValue
Header<TFeatures, TData, TValue>
Header<TFeatures, TData, TValue> & NoInfer<THeaderComponents>
TFeatures extends TableFeatures
TData extends RowData
TSelected
TTableComponents extends Record<string, RenderableComponent>
TCellComponents extends Record<string, RenderableComponent>
THeaderComponents extends Record<string, RenderableComponent>