src/IGridRow.ts
        
                            Properties | 
                    
| type | 
                                        type:     
                                     | 
                                
                                            Type :     any
                                         | 
                                    
| 
                                             Defined in src/IGridRow.ts:9 
                                         | 
                                    
| value | 
                                        value:     
                                     | 
                                
                                            Type :     any
                                         | 
                                    
| 
                                             Defined in src/IGridRow.ts:10 
                                         | 
                                    
import { IEntity } from './IEntity';
export interface IGridRow {
  entity: IEntity;
  columns: IGridRowValues[];
}
export interface IGridRowValues {
  type?: any;
  value: any;
}