From 688430587ae0e49b86f4579734e478e4f17ec1be Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 13 Mar 2024 11:56:02 +0300 Subject: [PATCH] Fixed #5410 - Type 'string' is not assignable to type 'object'. --- components/lib/datatable/DataTable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/datatable/DataTable.d.ts b/components/lib/datatable/DataTable.d.ts index ccf77b7188..d1229018ae 100755 --- a/components/lib/datatable/DataTable.d.ts +++ b/components/lib/datatable/DataTable.d.ts @@ -1117,7 +1117,7 @@ export interface DataTableProps { /** * Inline style of the table element. */ - tableStyle?: object | undefined; + tableStyle?: string | object | undefined; /** * Style class of the table element. */