Skip to content

Commit

Permalink
Change isCellEditable params type
Browse files Browse the repository at this point in the history
  • Loading branch information
atomheartother committed Apr 24, 2024
1 parent 931fd6e commit 05493a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/x-data-grid/src/models/props/DataGridProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ export interface DataGridPropsWithoutDefaultValue<R extends GridValidRowModel =
* @param {GridCellParams} params With all properties from [[GridCellParams]].
* @returns {boolean} A boolean indicating if the cell is editable.
*/
isCellEditable?: (params: GridCellParams<any, R>) => boolean;
isCellEditable?: (params: GridCellParams<R>) => boolean;
/**
* Determines if a row can be selected.
* @param {GridRowParams} params With all properties from [[GridRowParams]].
Expand Down

0 comments on commit 05493a8

Please sign in to comment.