import { BpmnType } from '../Constants'; import { Activity } from './ActivityBase'; /** * Describes a BPMN ManualTask. */ export type ManualTask = Activity & { readonly bpmnType: BpmnType.manualTask; /** * If set to false, the Manual Task will automatically finish, without waiting for User input. */ requiresConfirmation: boolean; };