UNPKG

primeng

Version:

[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng) [![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng) [![Actions CI](https://github.com/primefaces/primeng/workflows/No

32 lines (31 loc) 702 B
import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Dialog. * @group Templates */ export interface DialogTemplates { /** * Custom template of header. */ header: TemplateRef<any> | null; /** * Custom template of content. */ content: TemplateRef<any> | null; /** * Custom template of footer. */ footer: TemplateRef<any> | null; /** * Custom template of closeicon. */ closeicon: TemplateRef<any> | null; /** * Custom template of maximizeicon. */ maximizeicon: TemplateRef<any> | null; /** * Custom template of minimizeicon. */ minimizeicon: TemplateRef<any> | null; }