import { TemplateRef } from '@angular/core'; import { MenuItem } from 'primeng/api'; /** * Defines valid templates in Menubar. * @group Templates */ export interface MenubarTemplates { /** * Custom item template. */ item(context: { /** * Item instance. */ $implicit: MenuItem; /** * Whether root or not */ root: boolean; }): TemplateRef<{ $implicit: MenuItem; root: boolean; }>; /** * Custom template of start. */ start(): TemplateRef; /** * Custom template of end. */ end(): TemplateRef; /** * Custom template of menuicon. */ menuicon(): TemplateRef; /** * Custom template of submenuicon. */ submenuicon(): TemplateRef; }