Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Domino987 committed Jan 29, 2022
2 parents 5faa47c + 90fb9f7 commit 33fffdf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ export interface Column<RowData extends object> {
filtering?: boolean;
filterComponent?: (props: {
columnDef: Column<RowData>;
onFilterChanged: (rowId: string, value: any) => void;
// The columnId can be extracted from columnDef.tableData.id
onFilterChanged: (columnId: string, value: any) => void;
}) => React.ReactElement<any>;
filterPlaceholder?: string;
filterCellStyle?: React.CSSProperties;
Expand Down

0 comments on commit 33fffdf

Please sign in to comment.