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

35 lines (34 loc) 641 B
import { TemplateRef } from '@angular/core'; /** * Custom change event. * @see {@link Rating.onRate} * @group Events */ export interface RatingRateEvent { /** * Browser event */ originalEvent: Event; /** * Selected option value */ value: number; } /** * Defines valid templates in Rating. * @group Templates */ export interface RatingTemplates { /** * Custom on icon template. */ onicon(): TemplateRef<any>; /** * Custom off icon template. */ officon(): TemplateRef<any>; /** * Custom cancel icon template. */ cancelicon(): TemplateRef<any>; }