import { LEVEL_ENUM, Vertex, Interface, Structure, Enum, App } from '..'; export interface Category { level: LEVEL_ENUM.category; name: string; categoryInterfaces: Array; categoryStructures: Array; isLeaf: false; structureExpanded: false; interfaceExpanded: false; } /** * 数据分类 */ export declare class Module extends Vertex { /** * 模块名 */ readonly name: string; readonly level: LEVEL_ENUM; globalLogics: Array; structures: Array; enums: Array; structureExpanded: Boolean; enumExpanded: Boolean; globalLogicExpanded: Boolean; structureHidden: Boolean; enumHidden: Boolean; readonly app: App; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); } export default Module;