mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
596efe8fb0
(cherry picked from commit cae134ec7b331d1c906343716472f3d043614b2c)
8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
export interface UiSettings {
|
|
theme: 'auto' | 'dark' | 'light';
|
|
showRelativeDates: boolean;
|
|
shortDateFormat: string;
|
|
longDateFormat: string;
|
|
timeFormat: string;
|
|
}
|