Saves match configuration to storage.
The match configuration to save.
saveMatchConfig(config); Copy
saveMatchConfig(config);
export function saveMatchConfig(config: MatchConfig): void { try { storage.setItem(STORAGE_KEYS.MATCH_CONFIG, JSON.stringify(config)); } catch (error) { console.error("Error saving match config to storage", error); }} Copy
export function saveMatchConfig(config: MatchConfig): void { try { storage.setItem(STORAGE_KEYS.MATCH_CONFIG, JSON.stringify(config)); } catch (error) { console.error("Error saving match config to storage", error); }}
Saves match configuration to storage.