cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
19 lines (18 loc) • 601 B
TypeScript
import { ICoreSyco } from "./core_system_config";
declare class ICoreSyth {
_id?: string;
syth_theme_id?: string;
syth_theme_name?: string;
syth_is_public?: boolean;
syth_is_default?: boolean;
syth_properties?: any;
}
interface ICoreSythDrawer {
syth_status: boolean;
syth_config_syco_for: string;
/** Optional JSON config per drawer row (e.g. for drawer_docs: array of doc items with title, url, etc.) */
syth_config_json?: string | Record<string, unknown> | unknown[];
core_system_config?: ICoreSyco;
}
export { ICoreSyth, // interface
ICoreSythDrawer };