@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
12 lines • 524 B
TypeScript
import type { RefObject } from '@mui/x-internals/types';
import type { 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'];
};
}