import { TemplateRef } from '@angular/core'; export interface ISearchTableColumnModel { id: string; label: string; labelId?: string; unhidable?: boolean; open: boolean; identifier?: boolean; type?: 'link' | 'button' | 'emit' | 'image' | 'date' | 'datetime' | 'file' | 'reference' | 'disabled' | 'template' | 'html'; handler?: () => void; fndyLink?: string; fndyLinkId?: string; hasChildren?: boolean; multipleTypes?: boolean; aggregate?: 'sum'; template?: TemplateRef; }