Initial commit
This commit is contained in:
10
lib/services/IMenuItem.d.ts
vendored
Normal file
10
lib/services/IMenuItem.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface IMenuItem {
|
||||
id: string;
|
||||
label: string;
|
||||
icon?: string;
|
||||
hoverText: string;
|
||||
url?: string;
|
||||
pathDepth: number;
|
||||
items?: IMenuItem[];
|
||||
hasChildren: () => boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user