interface DesignerProps {
    children?: ReactNode;
    config?: {
        customActionVariables?: IVariableTreeNode[];
        customExpressionVariables?: IVariableTreeNode[];
    };
    engine: Engine;
    previewSandboxQuery?: DndQuery;
    remoteServices?: Record<string, any>;
    sandboxQuery?: DndQuery;
    theme?: any;
}

Hierarchy

Properties

children?: ReactNode
config?: {
    customActionVariables?: IVariableTreeNode[];
    customExpressionVariables?: IVariableTreeNode[];
}

自定义配置数据

engine: Engine

低代码引擎

previewSandboxQuery?: DndQuery

预览沙箱查询实例

remoteServices?: Record<string, any>

远程服务

sandboxQuery?: DndQuery

沙箱查询实例

theme?: any

主题包