mirror of https://github.com/ghostfolio/ghostfolio
committed by
Thomas Kaul
16 changed files with 136 additions and 26 deletions
@ -1,5 +1,6 @@ |
|||
export interface PortfolioReportRule { |
|||
evaluation: string; |
|||
evaluation?: string; |
|||
key: string; |
|||
name: string; |
|||
value: boolean; |
|||
value?: boolean; |
|||
} |
|||
|
@ -0,0 +1,12 @@ |
|||
export interface xRayRules { |
|||
AccountClusterRiskCurrentInvestment?: Rule; |
|||
AccountClusterRiskSingleAccount?: Rule; |
|||
CurrencyClusterRiskBaseCurrencyCurrentInvestment?: Rule; |
|||
CurrencyClusterRiskCurrentInvestment?: Rule; |
|||
EmergencyFundSetup?: Rule; |
|||
FeeRatioInitialInvestment?: Rule; |
|||
} |
|||
|
|||
interface Rule { |
|||
isActive: boolean; |
|||
} |
Loading…
Reference in new issue