import { Identity } from '@5minds/processcube_engine_sdk'; /** * Encapsulates a message for when a Process Instance gets killed by a user. */ export type KillProcessInstanceMessage = { killedBy: Identity; flowNodeId?: string; currentToken?: any; };