menu-group.model.ts 117 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 import {MenuItem} from "./menu-item.model"; export interface MenuGroup { name: string; items: MenuItem[]; }