Files
creamlinux-installer/src/types/Config.ts
T
2026-07-11 12:21:39 +02:00

12 lines
353 B
TypeScript

/**
* User configuration structure
* Matches the Rust Config struct
*/
export interface Config {
/** Whether to show the disclaimer on startup */
show_disclaimer: boolean
reporting_opted_in: boolean
reporting_has_seen_prompt: boolean
/** Extra Steam library folders to scan, beyond the auto-detected ones */
custom_steam_paths: string[]
}