UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

9 lines 230 B
import { GridRowId } from "./gridRows.js"; export type GridRowSelectionPropagation = { descendants?: boolean; parents?: boolean; }; export type GridRowSelectionModel = { type: 'include' | 'exclude'; ids: Set<GridRowId>; };