fix types

This commit is contained in:
Alexander Zobnin
2020-05-28 12:10:07 +03:00
parent da6352263b
commit 88e8b689ad
2 changed files with 8 additions and 5 deletions

View File

@@ -195,7 +195,7 @@ export interface RTRow<T> {
/** true if this row was produced by a pivot */
groupedByPivot?: boolean;
/** any sub rows defined by the `subRowKey` prop */
subRows?: any[];
subRows?: boolean;
}
export interface RTCell<T> extends RTRow<T> {