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

44 lines (43 loc) 886 B
import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Timeline. * @group Templates */ export interface TimelineTemplates { /** * Custom content template. * @param {Object} context - item data. */ content(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; /** * Custom opposite item template. * @param {Object} context - item data. */ opposite(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; /** * Custom marker template. * @param {Object} context - item data. */ marker(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; }