import { TemplateRef } from '@angular/core'; /** * Defines valid templates in ConfirmDialog. * @group Templates */ export interface ConfirmDialogTemplates { /** * Custom template of header. */ header(): TemplateRef; /** * Custom template of footer. */ footer(): TemplateRef; /** * Custom template of message. */ message(context: { $implicit?: any; }): TemplateRef; /** * Custom template of icon. */ icon(): TemplateRef; /** * Custom template of rejecticon. */ rejecticon(): TemplateRef; /** * Custom template of accepticon. */ accepticon(): TemplateRef; /** * Headless template. */ headless(context: { $implicit?: any; }): TemplateRef; }