mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2026-08-03 03:48:27 -04:00
12 lines
353 B
TypeScript
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[]
|
|
} |