UNPKG

@chamn/engine

Version:
35 lines (34 loc) 1.42 kB
import { CPlugin } from '../core/pluginManager'; import { ComponentLibPlugin } from './ComponentLibrary'; import { DesignerPlugin } from './Designer'; import { OutlineTreePlugin } from './OutlineTree'; import { RightPanelPlugin } from './RightPanel'; import { GlobalStatePanelPlugin } from './GlobalStatePanel'; import { DisplaySourceSchema } from './DisplaySourceSchema'; import { HistoryPlugin } from './History'; import { HotkeysPlugin } from './Hotkeys'; export declare const DEFAULT_PLUGIN_LIST: CPlugin[]; export { DesignerPlugin, ComponentLibPlugin, RightPanelPlugin, OutlineTreePlugin, GlobalStatePanelPlugin, HistoryPlugin, DisplaySourceSchema, HotkeysPlugin, }; /** 组件唯一名 */ export declare const DEFAULT_PLUGIN_NAME_MAP: { HotkeysPlugin: string; ComponentLibPlugin: string; RightPanelPlugin: string; GlobalStatePanelPlugin: string; HistoryPlugin: string; DesignerPlugin: string; OutlineTreePlugin: string; }; export * from './AdvancePanel/index'; export * from './ComponentLibrary/index'; export * from './ComponentStatePanel/index'; export * from './Designer/index'; export * from './DisplaySourceSchema/index'; export * from './GlobalStatePanel/index'; export * from './History'; export * from './OutlineTree'; export * from './PropertyPanel'; export * from './RightPanel'; export * from './RightPanel/type'; export * from './VisualPanelPlus'; export * from './Hotkeys';