Fixed #3403 - DataTable: Invalid typing for DataTableSortFieldType
parent
59451e279a
commit
2c32998ef7
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue