UNPKG

cloud-ide-lms-model

Version:

Package for Model management of Cloud IDEsys LMS

36 lines (35 loc) 831 B
import { ICoreSythDrawer } from "./core_system_themes"; declare class ICoreSytm { _id?: string; sytm_theme_code?: string; sytm_title?: string; sytm_desc?: string; sytm_configuration?: any; sytm_layout?: ICoreSytmLayout; sytm_page_id_sypg?: string; sytm_preview_id_fm?: string; sytm_isactive?: boolean; } declare class ICoreSytmLayout { sytm_layout_sidebar?: { status: boolean; }; sytm_layout_header?: { status: boolean; }; sytm_layout_footer?: { status: boolean; }; sytm_layout_breadcrumb?: { status: boolean; }; sytm_layout_console?: { status: boolean; }; sytm_layout_request?: { status: boolean; }; sytm_layout_drawer?: ICoreSythDrawer[]; } export { ICoreSytm, // interface ICoreSytmLayout };