UNPKG

cloud-ide-lms-model

Version:

Package for Model management of Cloud IDEsys LMS

14 lines (13 loc) 368 B
import { controllerResponse } from "../utilities/helpers/response.helper"; export interface menuControllerResponse extends controllerResponse { data?: menuResponseData[]; } export interface menuResponseData { key: string; path: string; isExternalLink?: boolean; title: string; icon: string; type: string; subMenu: menuResponseData[]; }