feat(frontend): add Mods page with table view, delete, and cleanup

This commit is contained in:
MrFastwind
2026-07-06 16:10:32 +02:00
parent c06a9a7981
commit cc7cb0bc56
5 changed files with 151 additions and 1 deletions
+10
View File
@@ -50,3 +50,13 @@ export interface ServerPaths {
cfg_dir: string
profiles_dir: string
}
export interface ModInfo {
id: string
name: string
source: 'workshop' | 'local'
path: string
size: number
in_use: boolean
modlists: string[]
}