From ad8565d29aae8b8333b8615e7db76643df234cde Mon Sep 17 00:00:00 2001 From: gssong <1742057357@qq.com> Date: 星期四, 21 三月 2024 21:49:34 +0800 Subject: [PATCH] update 调整我的发起,流程定义按钮 --- src/types/bpmn/panel.d.ts | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/src/types/bpmn/panel.d.ts b/src/types/bpmn/panel.d.ts index 0d0cac4..fc5fbe5 100644 --- a/src/types/bpmn/panel.d.ts +++ b/src/types/bpmn/panel.d.ts @@ -72,4 +72,20 @@ conditionExpressionValue: string; skipExpression: string; } + + export interface ParticipantPanel extends BasePanel {} + export interface SubProcessPanel extends BasePanel { + multiInstanceType: MultiInstanceTypeEnum; + collection?: string; + elementVariable?: string; + completionCondition?: string; + loopCharacteristics?: { + collection: string; + elementVariable: string; + isSequential: boolean; + completionCondition: { + body: string; + }; + }; + } } -- Gitblit v1.9.3