UNPKG

@mui/x-data-grid-premium

Version:

The Premium plan edition of the MUI X Data Grid Components.

8 lines 433 B
import type { GridProSlotProps } from '@mui/x-data-grid-pro/internals'; import type { GridChartsPanelProps } from "../components/chartsPanel/GridChartsPanel.mjs"; export interface GridChartsPanelPropsOverrides {} type SlotProps<Props, Overrides> = Partial<Props & Overrides>; export interface GridPremiumSlotProps extends GridProSlotProps { chartsPanel?: SlotProps<GridChartsPanelProps, GridChartsPanelPropsOverrides>; } export {};