import { FlowNodeInstance } from './FlowNodeInstance'; export type EventList = { events: Array; totalCount: number; }; export type EventInstance = FlowNodeInstance & { /** * The name of the event that this FlowNodeIntance is waiting for. */ eventName: string; /** * Optional: The Correlation ID used by all Process Instances started by the Event. * Throw- and End- Events only. */ customCorrelationId?: string; /** * Optional: Contains the computed value of the triggerValueInToken expression from the model. * If set, the Flow Node Instance will only continue, if the given value matches the triggerValue of the incoming message or signal. * Start-, Boundary- and Catch- Events only. */ triggerValue?: string; };