@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
10 lines (9 loc) • 318 B
TypeScript
import { EventMessageInternal } from './BaseMessage';
/**
* Encapsulates a message for when the metadata of a Correlation or Process Instance was changed by a Flow Node Instance.
*/
export type MetadataChangedMessageInternal = EventMessageInternal & {
changedMetadata: {
[key: string]: string;
};
};