interface ConfidenceRecalculationExecution {
    taskId: string;
    promise: Promise<ConfidenceRecalculationResult>;
    cancel: () => void;
}

Properties

Properties

taskId: string
cancel: () => void