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) 384 B
import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Dock. * @group Templates */ export interface DockTemplates { /** * Custom template of item. * @param {Object} context - item data. */ item(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; }