import { Identity } from '../../DataModels'; /** * Encapsulates a message for when a Process Instance gets killed by a user. */ export type KillProcessInstanceMessage = { /** * Contain the killers identity. */ killedBy: Identity; processInstanceId: string; };