import { BaseElement } from '../Base/index'; /** * Contains a BPMN MessageFlow. * These are used to showcase the communication between FlowNodes from different processes. * * They have symbolic value only and don't actually do anything. */ export type MessageFlow = BaseElement & { name?: string; sourceRef: string; targetRef: string; };