export interface MenuInterface { id?: number; title: string; iconUrl?: string; icon?: string; iconGroup?: string; subMenus?: MenuInterface[]; link?: string; footer?: string; openCallback?: () => void; }