interface ConfidenceRecalculationDialogProps {
    open: boolean;
    onOpenChange: (open: boolean) => void;
    progress?: null | ConfidenceProgress;
    status: ConfidenceRunStatus;
    matchCount: number;
    lastDurationMs?: number;
    lastCompletedAt?: string;
    errorMessage?: null | string;
    canStart: boolean;
    onStart: () => void;
    onCancel: () => void;
    metadata?: null | ConfidenceRecalculationMetadata;
}

Properties

open: boolean
onOpenChange: (open: boolean) => void
progress?: null | ConfidenceProgress
matchCount: number
lastDurationMs?: number
lastCompletedAt?: string
errorMessage?: null | string
canStart: boolean
onStart: () => void
onCancel: () => void