mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
664 B
28 lines
664 B
import {
|
|
ColorScheme,
|
|
DateRange,
|
|
HoldingsViewMode,
|
|
ViewMode,
|
|
XRayRulesSettings
|
|
} from '@ghostfolio/common/types';
|
|
|
|
export interface UserSettings {
|
|
annualInterestRate?: number;
|
|
baseCurrency?: string;
|
|
benchmark?: string;
|
|
colorScheme?: ColorScheme;
|
|
dateRange?: DateRange;
|
|
emergencyFund?: number;
|
|
'filters.accounts'?: string[];
|
|
'filters.tags'?: string[];
|
|
holdingsViewMode?: HoldingsViewMode;
|
|
isExperimentalFeatures?: boolean;
|
|
isRestrictedView?: boolean;
|
|
language?: string;
|
|
locale?: string;
|
|
projectedTotalAmount?: number;
|
|
retirementDate?: string;
|
|
savingsRate?: number;
|
|
viewMode?: ViewMode;
|
|
xRayRules?: XRayRulesSettings;
|
|
}
|
|
|