Merge pull request #3449 from emrekaansurgun/master

DataTable.d.ts groupRowsBy type fix
pull/3509/head
Tuğçe Küçükoğlu 2023-01-09 13:10:25 +03:00 committed by GitHub
commit 2c206d3d46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ export interface DataTableProps {
/** /**
* One or more field names to use in row grouping. * One or more field names to use in row grouping.
*/ */
groupRowsBy?: (field: string) => object | string[] | string | undefined; groupRowsBy?: ((field: string) => object) | string[] | string | undefined;
/** /**
* Whether the row groups can be expandable. * Whether the row groups can be expandable.
*/ */