Skip to main content
Version: 3.10

ProcessElement 流程元素

1. 结构声明

class ProcessElement extends BaseNode {
name: string = '';
title?: string;
description?: string;
bindEvents: Array<BindEvent>;
type: string;
sourceRef?: string;
targetRef?: string;
bounds?: Rect;
waypoints?: Array<Point>;
flowValue?: string;
logic?: Logic;
variables: Array<Variable>;
returns: Array<Return>;
constants: Array<Constant>;
bindAttrs: Array<BindAttribute>;
multiApprovalPolicy?: MultiApprovalPolicy;
}