cloud-ide-model-schema
Version:
Pachage for schema management of Cloud IDEsys LMS
14 lines (13 loc) • 368 B
TypeScript
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[];
}