UNPKG

@alilc/lowcode-shell

Version:

Shell Layer for AliLowCodeEngine

12 lines (11 loc) 453 B
import { editorViewSymbol, pluginContextSymbol } from '../symbols'; import { IPublicModelPluginContext } from '@alilc/lowcode-types'; import { IViewContext } from '@alilc/lowcode-workspace'; export declare class EditorView { [editorViewSymbol]: IViewContext; [pluginContextSymbol]: IPublicModelPluginContext; constructor(editorView: IViewContext); toProxy(): this; get viewName(): string; get viewType(): "webview" | "editor"; }