UNPKG

@alilc/lowcode-shell

Version:

Shell Layer for AliLowCodeEngine

31 lines (30 loc) 1.18 kB
import { IPublicApiCommon } from '@alilc/lowcode-types'; import { Skeleton as InnerSkeleton } from '@alilc/lowcode-editor-skeleton'; import { Editor } from '@alilc/lowcode-editor-core'; export declare class Common implements IPublicApiCommon { private readonly __designerCabin; private readonly __skeletonCabin; private readonly __editorCabin; private readonly __utils; constructor(editor: Editor, skeleton: InnerSkeleton); get utils(): any; /** * 历史原因导致此处设计不合理,慎用。 * this load of crap will be removed in some future versions, don`t use it. * @deprecated */ get editorCabin(): any; /** * 历史原因导致此处设计不合理,慎用。 * this load of crap will be removed in some future versions, don`t use it. * @deprecated use canvas api instead */ get designerCabin(): any; get skeletonCabin(): any; /** * 历史原因导致此处设计不合理,慎用。 * this load of crap will be removed in some future versions, don`t use it. * @deprecated use { TransformStage } from '@alilc/lowcode-types' instead */ get objects(): any; }