import { TemplateRef } from '@angular/core'; import { OptionsTable } from '../export'; /** * Expand option */ export interface ExpandOption extends OptionsTable { /** * icons to open and close */ icon?: { open?: string; close?: string; }; /** * template to expand */ template: TemplateRef | ((data: any) => TemplateRef); }