@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
12 lines (11 loc) • 406 B
TypeScript
import { GridPreferencePanelsValue } from './gridPreferencePanelsValue';
export interface GridPreferencePanelState {
open: boolean;
/**
* Tab currently opened.
* @default GridPreferencePanelsValue.filter
* TODO v6: Remove the default behavior
*/
openedPanelValue?: GridPreferencePanelsValue;
}
export declare type GridPreferencePanelInitialState = GridPreferencePanelState;