graphdb-workbench
Version:
The web application for GraphDB APIs
21 lines (20 loc) • 516 B
TypeScript
export interface ExternalMenuItemModel {
label: string;
labelKey: string;
href: string;
documentationHref?: string;
order: number;
children?: ExternalMenuItemModel[];
icon?: string;
guideSelector?: string;
editions?: string;
role?: string;
parent?: string;
hrefFun?: string;
shouldShow?: boolean;
testSelector?: string;
}
export interface ExternalMenuItemsModel {
items: ExternalMenuItemModel[];
}
export type ExternalMenuModel = ExternalMenuItemsModel[];