File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
projects/igniteui-angular/src/lib/grids/common Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 11import { IGroupByRecord } from '../../data-operations/groupby-record.interface' ;
2- import { IgxGridComponent } from '../grid/grid.component' ;
3- import { IgxHierarchicalGridComponent } from '../hierarchical-grid/hierarchical-grid.component' ;
42import { IgxSummaryResult } from '../summaries/grid-summary' ;
5- import { IgxTreeGridComponent } from '../tree-grid/tree-grid.component' ;
63import { ITreeGridRecord } from '../tree-grid/tree-grid.interfaces' ;
4+ import { GridType } from './grid.interface' ;
75
86export interface RowType {
97 index : number ;
@@ -27,7 +25,7 @@ export interface RowType {
2725 children ?: ITreeGridRecord [ ] ;
2826 parent ?: ITreeGridRecord ;
2927 hasChildren ?: boolean ;
30- grid : IgxGridComponent | IgxTreeGridComponent | IgxHierarchicalGridComponent ;
28+ grid : GridType ;
3129 update ?: ( value : any ) => void ;
3230 delete ?: ( ) => any ;
3331 pin ?: ( ) => void ;
You can’t perform that action at this time.
0 commit comments