interface SyncErrorBoundaryProps {
    children: ReactNode;
    onReset?: () => void;
    onRetryFailed?: () => void;
    onCancelSync?: () => void;
}

Properties

children: ReactNode

Child components to wrap

onReset?: () => void

Callback to reset sync state

onRetryFailed?: () => void

Callback to retry failed operations

onCancelSync?: () => void

Callback to cancel active sync