Merge pull request #2601 from tugcekucukoglu/refactor-2595

Refactor #2595
pull/2603/head
Tuğçe Küçükoğlu 2022-06-01 09:12:01 +03:00 committed by GitHub
commit ff8e8622c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;