mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
8aad1ac554
* New: Allow major version updates to be installed (cherry picked from commit 0e95ba2021b23cc65bce0a0620dd48e355250dab) * fixup! New: Allow major version updates to be installed --------- Co-authored-by: Mark McDowall <mark@mcdowall.ca>
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;
|
|
}
|