function table_setColumnResizing<TFeatures, TData>(table, updater): void;function table_setColumnResizing<TFeatures, TData>(table, updater): void;Defined in: features/column-resizing/columnResizingFeature.utils.ts:280
Routes a transient column resizing updater through the table's resize handler.
This state tracks the active drag interaction; committed widths live in columnSizing.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setColumnResizing(table, (old) => ({ ...old, deltaOffset: 12 }))table_setColumnResizing(table, (old) => ({ ...old, deltaOffset: 12 }))