import { BaseElement } from '../Base/index'; /** * Contains a BPMN DataObject. * DataObjects are used to store data within the Scope of a ProcessInstance, so that all Elements of the process can access it. */ export type DataObject = BaseElement & {}; /** * Contains a reference to a DataObject. */ export type DataObjectReference = BaseElement & { name?: string; /** * The name of the DataObject the reference points to. */ dataObjectRef: string; initialValue: string | undefined; };