fix(data-table): type DataTableRowId as "any" #530

Fixes #530
This commit is contained in:
Eric Y Liu 2021-07-14 09:19:04 -07:00
commit 2b9e614e48
5 changed files with 6 additions and 6 deletions

View file

@ -28,7 +28,7 @@ export interface DataTableRow {
[key: string]: DataTableValue;
}
export type DataTableRowId = string;
export type DataTableRowId = any;
export interface DataTableCell {
key: DataTableKey;