Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Komarov committed Dec 23, 2023
1 parent 2b723e7 commit cc497c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Models/Column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class Column {
public headerFilterValues?: any[];
public headerFilterPopupPosition?: PopupPosition;
public headerFilterListItems?: (props: { data?: any[] }) => any[];
public filter?: ((value: any, filterValue: any, rowData?: any) => boolean) | void;
public filter?: (value: any, filterValue: any, rowData?: any) => boolean;
public isHeaderFilterPopupShown?: boolean;
public isEditable?: boolean;
public isFilterable?: boolean;
Expand Down

0 comments on commit cc497c8

Please sign in to comment.