All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
10 lines
No EOL
212 B
TypeScript
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"
|
|
} |