config types #88

This commit is contained in:
Novattz
2026-01-03 00:24:56 +01:00
parent 418b470d4a
commit 3459158d3f
2 changed files with 9 additions and 0 deletions

8
src/types/Config.ts Normal file
View File

@@ -0,0 +1,8 @@
/**
* User configuration structure
* Matches the Rust Config struct
*/
export interface Config {
/** Whether to show the disclaimer on startup */
show_disclaimer: boolean
}

View File

@@ -1,2 +1,3 @@
export * from './Game'
export * from './DlcInfo'
export * from './Config'