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