|
@ -1,3 +1,5 @@ |
|
|
|
|
|
import { PortfolioReportRule } from '../interfaces'; |
|
|
|
|
|
|
|
|
export type XRayRulesSettings = { |
|
|
export type XRayRulesSettings = { |
|
|
AccountClusterRiskCurrentInvestment?: RuleSettings; |
|
|
AccountClusterRiskCurrentInvestment?: RuleSettings; |
|
|
AccountClusterRiskSingleAccount?: RuleSettings; |
|
|
AccountClusterRiskSingleAccount?: RuleSettings; |
|
@ -7,6 +9,6 @@ export type XRayRulesSettings = { |
|
|
FeeRatioInitialInvestment?: RuleSettings; |
|
|
FeeRatioInitialInvestment?: RuleSettings; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
interface RuleSettings { |
|
|
interface RuleSettings extends Pick<PortfolioReportRule, 'settings'> { |
|
|
isActive: boolean; |
|
|
isActive: boolean; |
|
|
} |
|
|
} |
|
|