| 12345678910111213141516171819202122232425 |
- export interface MenuItem {
- label?: string;
- icon?: string;
- command?: (event?: any) => void;
- url?: string;
- routerLink?: any;
- queryParams?: {
- [k: string]: any;
- };
- items?: MenuItem[] | MenuItem[][];
- expanded?: boolean;
- disabled?: boolean;
- visible?: boolean;
- target?: string;
- routerLinkActiveOptions?: any;
- separator?: boolean;
- badge?: string;
- badgeStyleClass?: string;
- style?: any;
- styleClass?: string;
- title?: string;
- id?: string;
- automationId?: any;
- tabindex?: string;
- }
|