pull/2601/head
Tuğçe Küçükoğlu 2022-06-01 09:11:41 +03:00
parent 6df9b3dbcc
commit 341a5f9c3b
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ type DataTablePaginatorPositionType = 'top' | 'bottom' | 'both' | undefined;
type DataTableSortFieldType = string | ((item: any) => string) | undefined;
type DataTableDataKeyType = string | (() => string) | undefined;
type DataTableDataKeyType = string | ((item: any) => string) | undefined;
type DataTableMultiSortMetaType = DataTableSortMeta[] | undefined | null;