Fixed #3403 - DataTable: Invalid typing for DataTableSortFieldType

pull/3509/head
Tuğçe Küçükoğlu 2023-01-09 13:09:40 +03:00
parent 59451e279a
commit 2c32998ef7
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { VirtualScrollerProps } from '../virtualscroller';
type DataTablePaginatorPositionType = 'top' | 'bottom' | 'both' | undefined; type DataTablePaginatorPositionType = 'top' | 'bottom' | 'both' | undefined;
type DataTableSortFieldType = string | ((item: any) => string) | undefined; type DataTableSortFieldType = string | ((item: any) => string) | undefined | null;
type DataTableDataKeyType = string | ((item: any) => string) | undefined; type DataTableDataKeyType = string | ((item: any) => string) | undefined;