mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2026-05-04 05:52:04 -04:00
10 lines
246 B
TypeScript
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
|
|
} |