frontend/types/settings.ts
Temmie 37ebcb74aa
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
feat: implement layout switching and saving
2025-08-05 02:22:57 +02:00

10 lines
No EOL
212 B
TypeScript

export interface ClientSettings {
timeFormat?: TimeFormat
selectedThemeStyle?: string // URL
selectedThemeLayout?: string // URL
}
export interface TimeFormat {
index: number,
format: "auto" | "12" | "24"
}