import { EditorState, LayerRegistry } from './layer'; import { AbleRegistry, ConfigEntity, EntityRegistry } from '../common'; export declare const PlaygroundConfig: unique symbol; /** * 画布配置 */ export interface PlaygroundConfig { layers?: LayerRegistry[]; ables?: AbleRegistry[]; entities?: EntityRegistry[]; editorStates?: EditorState[]; width?: number; height?: number; node?: HTMLElement; autoFocus?: boolean; autoResize?: boolean; zoomEnable?: boolean; contextMenuPath?: string[]; contextMenuPathEditPath?: string[]; entityConfigs?: Map, any>; } /** * 默认注册器 */ export declare function createDefaultPlaygroundConfig(): PlaygroundConfig; //# sourceMappingURL=playground-config.d.ts.map