import { Type } from '@angular/core'; export interface SimpleTableColumn { field: string; displayName: string; sort?: boolean; sortable?: boolean; cellDataFunc?: (item: any) => string; customComponent?: Type; customComponentOutputs?: { [key: string]: (...args: any[]) => any; }; style?: { [key: string]: string; }; } //# sourceMappingURL=columns.interface.d.ts.map