Files
XCDesktop/shared/types/settings.ts

8 lines
158 B
TypeScript
Raw Normal View History

2026-03-08 01:34:54 +08:00
export type ThemeMode = 'light' | 'dark'
export interface SettingsDTO {
theme?: 'light' | 'dark'
wallpaperOpacity?: number
markdownFontSize?: number
}