UNPKG

@alilc/lowcode-shell

Version:

Shell Layer for AliLowCodeEngine

13 lines (12 loc) 553 B
import { ILowCodePluginRuntime } from '@alilc/lowcode-designer'; import { IPublicModelPluginInstance } from '@alilc/lowcode-types'; import { pluginInstanceSymbol } from '../symbols'; export declare class PluginInstance implements IPublicModelPluginInstance { private readonly [pluginInstanceSymbol]; constructor(pluginInstance: ILowCodePluginRuntime); get pluginName(): string; get dep(): string[]; get disabled(): boolean; set disabled(disabled: boolean); get meta(): import("@alilc/lowcode-types").IPublicTypePluginMeta; }