import { TemplateRef } from '@angular/core'; import { ColumnForms } from './column'; export interface CustomColumnForms extends ColumnForms { /** * template custom */ template: ({ data, column }: { data: any; column: any; }) => TemplateRef; }