mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
e7d7bc79f4
(cherry picked from commit 0e95ba2021b23cc65bce0a0620dd48e355250dab)
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
export default interface UiSettings {
|
|
theme: 'auto' | 'dark' | 'light';
|
|
showRelativeDates: boolean;
|
|
shortDateFormat: string;
|
|
longDateFormat: string;
|
|
timeFormat: string;
|
|
}
|