import { GridColumn } from './grid-column.model'; export interface ITabData { extended?: boolean; field?: string; gridNameTitle?: string; isActive?: boolean; length?: number; stateName?: string; tableConfiguration?: string; title?: string; gridColumns?: GridColumn; data?: any; // Leave this for now }