You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
860 B

import { QueryParamsHandling } from '@angular/router';
import { MenuItem } from './menuitem';
export interface MegaMenuItem {
label?: string;
icon?: string;
command?: (event?: any) => void;
url?: string;
items?: 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;
routerLink?: any;
queryParams?: {
[k: string]: any;
};
fragment?: string;
queryParamsHandling?: QueryParamsHandling;
preserveFragment?: boolean;
skipLocationChange?: boolean;
replaceUrl?: boolean;
state?: {
[k: string]: any;
};
}