Saves sync configuration.
The sync configuration to save.
export function saveSyncConfig(config: SyncConfig): void { try { storage.setItem(STORAGE_KEYS.SYNC_CONFIG, JSON.stringify(config)); } catch (error) { console.error("[Storage] Error saving sync config to storage", error); }} Copy
export function saveSyncConfig(config: SyncConfig): void { try { storage.setItem(STORAGE_KEYS.SYNC_CONFIG, JSON.stringify(config)); } catch (error) { console.error("[Storage] Error saving sync config to storage", error); }}
Saves sync configuration.