import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Dialog. * @group Templates */ export interface DialogTemplates { /** * Custom template of header. */ header(): TemplateRef; /** * Custom template of content. */ content(): TemplateRef; /** * Custom template of footer. */ footer(): TemplateRef; /** * Custom template of closeicon. */ closeicon(): TemplateRef; /** * Custom template of maximizeicon. */ maximizeicon(): TemplateRef; /** * Custom template of minimizeicon. */ minimizeicon(): TemplateRef; }