UNPKG

@mui/x-data-grid-pro

Version:

The Pro plan edition of the MUI X Data Grid components.

10 lines 274 B
/** * The row reorder private API interface. */ export interface GridRowReorderPrivateApi { /** * Sets the row drag active state. * @param {boolean} isActive Whether a row drag operation is currently active. */ setRowDragActive: (isActive: boolean) => void; }