@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
15 lines • 486 B
TypeScript
import type { GridControlledStateReasonLookup } from "../events/gridEventLookup.js";
import type { GridApiCommon } from "./gridApiCommon.js";
/**
* Additional details passed to the callbacks
*/
export interface GridCallbackDetails<K extends keyof GridControlledStateReasonLookup = any> {
/**
* The reason for this callback to have been called.
*/
reason?: GridControlledStateReasonLookup[K];
/**
* GridApi that let you manipulate the grid.
*/
api: GridApiCommon;
}