Fixed #1078 - Bad type for column field when fn is used

pull/1196/head^2
Cagatay Civici 2021-05-12 15:46:08 +03:00
parent 0728aaa9ab
commit 8d87d78db2
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
interface ColumnProps {
columnKey?: any;
field?: string;
field?: string | ((item: any) => any);
sortField?: string | ((item: any) => any);
filterField?: string;
filterField?: string | ((item: any) => any);
dataType?: string;
sortable?: boolean;
header?: any;