UNPKG

@mui/x-data-grid-premium

Version:

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

5 lines (4 loc) 369 B
/// <reference types="react" /> import { GridColDef, GridValidRowModel } from '@mui/x-data-grid'; import { GridApiPremium } from './gridApiPremium'; export type GridPastedValueParser<R extends GridValidRowModel = GridValidRowModel, V = any, F = V> = (value: string, row: R, column: GridColDef<R, V, F>, apiRef: React.MutableRefObject<GridApiPremium>) => V | undefined;