Props for the SyncResultsView component.

export interface SyncResultsViewProps {
report: SyncReport;
onClose: () => void;
onExportErrors?: () => void;
}
interface SyncResultsViewProps {
    report: SyncReport;
    onClose: () => void;
    onExportErrors?: () => void;
}

Properties

report: SyncReport

The synchronization report containing results and errors.

onClose: () => void

Callback to close the results view.

onExportErrors?: () => void

Optional callback to export the error log.