interface SyncConfigurationPanelProps {
    syncConfig: SyncConfig;
    setSyncConfig: Dispatch<SetStateAction<SyncConfig>>;
    useCustomThreshold: boolean;
    setUseCustomThreshold: Dispatch<SetStateAction<boolean>>;
    handleToggleOption: (option: keyof SyncConfig) => void;
}

Properties

syncConfig: SyncConfig
setSyncConfig: Dispatch<SetStateAction<SyncConfig>>
useCustomThreshold: boolean
setUseCustomThreshold: Dispatch<SetStateAction<boolean>>
handleToggleOption: (option: keyof SyncConfig) => void