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

20 lines (19 loc) 345 B
import { TemplateRef } from '@angular/core'; /** * Caret positions. * @group Types */ export type Caret = { begin: number; end: number; }; /** * Defines valid templates in InputMask. * @group Templates */ export interface InputMaskTemplates { /** * Custom clear icon template. */ clearicon(): TemplateRef<any>; }