From 341a5f9c3badcb8a7ec56c0923f84aba919d3a81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 1 Jun 2022 09:11:41 +0300 Subject: [PATCH] Refactor #2595 --- src/components/datatable/DataTable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/datatable/DataTable.d.ts b/src/components/datatable/DataTable.d.ts index 36f291ce7..66cdd777b 100755 --- a/src/components/datatable/DataTable.d.ts +++ b/src/components/datatable/DataTable.d.ts @@ -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;