import { BaseElement } from '../Base/index'; /** * Describes a BPMN SequenceFlow element, which is used to connect two FlowNodes together. */ export type SequenceFlow = BaseElement & { name: string; sourceRef: string; targetRef: string; conditionExpression?: IConditionExpression; }; /** * Describes a conditional expression that can be placed on a SequenceFlow. */ export interface IConditionExpression { type: string; expression: string; }