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

27 lines (26 loc) 481 B
import { TemplateRef } from '@angular/core'; /** * Custom change event. * @see {@link Checkbox.onChange} * @group Events */ export interface CheckboxChangeEvent { /** * Checked value. */ checked?: any; /** * Browser event. */ originalEvent?: Event; } /** * Defines valid templates in Checkbox. * @group Templates */ export interface CheckboxTemplates { /** * Custom checkbox icon template */ icon(): TemplateRef<any>; }