UNPKG

graphdb-workbench

Version:
21 lines (20 loc) 516 B
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[];