11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
export interface IMenuItem {
|
|
id: string;
|
|
label: string;
|
|
icon?: string;
|
|
hoverText: string;
|
|
url?: string;
|
|
pathDepth: number;
|
|
items?: IMenuItem[];
|
|
hasChildren: () => boolean;
|
|
}
|