Initial commit
This commit is contained in:
14
lib/services/MenuItem.d.ts
vendored
Normal file
14
lib/services/MenuItem.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { IMenuItem } from './IMenuItem';
|
||||
import { ITerm } from './ISPTermStorePickerService';
|
||||
export declare class MenuItem implements IMenuItem {
|
||||
level: number;
|
||||
id: string;
|
||||
label: string;
|
||||
hoverText: string;
|
||||
pathDepth: number;
|
||||
url?: string;
|
||||
items?: IMenuItem[];
|
||||
constructor(term: ITerm, level: number, siteCollectionUrl?: string);
|
||||
hasChildren(): boolean;
|
||||
command(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user