import { FlowNodeInstance } from './FlowNodeInstance'; export type ManualTaskInstance = FlowNodeInstance & { /** * The ID of the User that finished (aka 'resumed') the Manual Task. * Only applies, if the Manual Task is actually finished. */ finishedByUserId?: string; }; export type ManualTaskList = { manualTasks: Array; totalCount: number; };