Files
creamlinux-installer/src/types/Config.ts
Novattz 0480d523e3 stuff
2026-03-28 15:07:50 +01:00

10 lines
246 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
}