Update settings.ts

This commit is contained in:
pobb 2026-05-15 19:07:02 +08:00 committed by GitHub
parent 415f00573e
commit f3b96553db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,3 +45,11 @@ export type UserSettings = {
language?: string
[key: string]: unknown
}
export type AppMode = 'default' | 'portable'
export type AppModeConfig = {
mode: AppMode
portableDir: string | null
defaultPortableDir: string | null
}