2021-09-24 21:09:48 +02:00
|
|
|
import { ViewMode } from '@prisma/client';
|
2021-05-16 21:20:59 +02:00
|
|
|
|
|
|
|
export interface UserSettings {
|
2021-09-24 21:09:48 +02:00
|
|
|
baseCurrency?: string;
|
2022-09-03 21:41:06 +02:00
|
|
|
isExperimentalFeatures?: boolean;
|
2021-08-16 21:40:29 +02:00
|
|
|
isRestrictedView?: boolean;
|
2022-08-21 18:06:31 +02:00
|
|
|
language?: string;
|
2021-05-16 21:20:59 +02:00
|
|
|
locale: string;
|
2021-06-21 20:03:36 +02:00
|
|
|
viewMode?: ViewMode;
|
2021-05-16 21:20:59 +02:00
|
|
|
}
|