function assignTableAPIs<TFeatures, TData, TDeps, TDepArgs>(
feature,
table,
apis): void;
Defined in: utils.ts:297
Assigns Table API methods directly to the table instance. Unlike row/cell/column/header, the table is a singleton so methods are assigned directly.
TFeatures extends TableFeatures
TData extends RowData
TDeps extends readonly any[]
TDepArgs
keyof TFeatures & string
Table_Internal<TFeatures, TData>
APIObject<TDeps, NoInfer<TDepArgs>>
void