src/IGridColumn.ts
        
                            Properties | 
                    
| name | 
                                        name:     
                                     | 
                                
                                            Type :     string
                                         | 
                                    
| 
                                             Defined in src/IGridColumn.ts:2 
                                         | 
                                    
| title | 
                                        title:     
                                     | 
                                
                                            Type :     string
                                         | 
                                    
| 
                                             Defined in src/IGridColumn.ts:3 
                                         | 
                                    
| type | 
                                        type:     
                                     | 
                                
                                            Type :     string
                                         | 
                                    
| 
                                             Defined in src/IGridColumn.ts:4 
                                         | 
                                    
| value | 
                                        value:     
                                     | 
                                
                                            Type :     any
                                         | 
                                    
| 
                                             Defined in src/IGridColumn.ts:5 
                                         | 
                                    
export interface IGridColumn {
  name: string;
  title: string;
  type: string;
  value?: any;
}