UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

28 lines (27 loc) 579 B
import { TemplateRef } from '@angular/core'; /** * Defines valid templates in ConfirmPopup. * @group Templates */ export interface ConfirmPopupTemplates { /** * Custom content template. */ content(context: { $implicit?: any; }): TemplateRef<any>; /** * Custom template of rejecticon. */ rejecticon(): TemplateRef<any>; /** * Custom template of accepticon. */ accepticon(): TemplateRef<any>; /** * Headless template. */ headless(context: { $implicit?: any; }): TemplateRef<any>; }