| | |
| | | multiInstanceType: MultiInstanceTypeEnum; |
| | | async?: boolean; |
| | | priority?: number; |
| | | formKey?: string; |
| | | skipExpression?: string; |
| | | isForCompensation?: boolean; |
| | | triggerServiceTask?: boolean; |
| | |
| | | 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; |
| | | }; |
| | | }; |
| | | } |
| | | } |