@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
12 lines • 514 B
TypeScript
import { RefObject } from '@mui/x-internals/types';
import { GridParamsApi } from "../api/gridParamsApi.js";
/**
* Overridable params methods interface, these methods could be overriden in a higher plan package.
*/
export interface GridParamsOverridableMethodsInternalHook<Api> {
useGridParamsOverridableMethods: (apiRef: RefObject<Api>) => {
getCellValue: GridParamsApi['getCellValue'];
getRowValue: GridParamsApi['getRowValue'];
getRowFormattedValue: GridParamsApi['getRowFormattedValue'];
};
}