@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
9 lines • 377 B
TypeScript
import type { GridRowId } from './gridRows';
import type { GridRowSelectionModel } from './gridRowSelectionModel';
export interface RowSelectionManager {
data: Set<GridRowId>;
has(id: GridRowId): boolean;
select(id: GridRowId): void;
unselect(id: GridRowId): void;
}
export declare const createRowSelectionManager: (model: GridRowSelectionModel) => RowSelectionManager;