You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
543 B
TypeScript
25 lines
543 B
TypeScript
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;
|
|
}
|