cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
38 lines (37 loc) • 885 B
TypeScript
import { ICoreSythDrawer } from "./core_system_themes";
interface ISytmLayout {
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[];
}
interface ICoreSytm {
_id?: string;
sytm_title?: string;
sytm_desc?: string;
sytm_theme_code?: string;
sytm_preview_id_fm?: string;
sytm_page_id_sypg?: string;
sytm_configuration?: any;
sytm_sub_title?: string;
sytm_entity_id_syen?: string;
sytm_layout?: ISytmLayout;
sytm_isselected?: boolean;
sytm_isactive?: boolean;
}
export { ISytmLayout, ICoreSytm };