Feature/expose thresholds in rule settings (#3770)

This commit is contained in:
Thomas Kaul
2024-09-14 19:42:37 +02:00
committed by GitHub
parent 9fb80e5067
commit 3de192c65e
2 changed files with 18 additions and 7 deletions

View File

@@ -3,5 +3,9 @@ export interface PortfolioReportRule {
isActive: boolean;
key: string;
name: string;
settings?: {
thresholdMax?: number;
thresholdMin?: number;
};
value?: boolean;
}