import { NestedGridAction } from "./nested-grid-action.interface"; import { TableColumnsActions } from "./table-columns-actions.interface"; export interface TableColumns { columnDef: string; header?: string; actions?: TableColumnsActions[]; actionByItems?: TableColumnsActions[]; nestedGridAction?: NestedGridAction[]; headerInnerHtml?: string; }