allow indexed access for DataRow objects (#5229)

This commit is contained in:
Denys Vuika
2019-11-08 18:10:33 +00:00
committed by GitHub
parent 9d127a41e5
commit 3fa6410e57

View File

@@ -16,6 +16,8 @@
*/ */
export interface DataRow { export interface DataRow {
[key: string]: any;
isSelected: boolean; isSelected: boolean;
isDropTarget?: boolean; isDropTarget?: boolean;
cssClass?: string; cssClass?: string;