We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8486e5 commit 51b7898Copy full SHA for 51b7898
1 file changed
frontend/src/app/services/api/targets.service.ts
@@ -34,9 +34,16 @@ export interface Targets {
34
}
35
36
37
+export interface CalculationLog {
38
+ name: string;
39
+ inputs: Record<string, unknown>;
40
+ formula: string;
41
+ result: unknown;
42
+}
43
+
44
export interface TargetsCalculationResponse {
45
targets: Targets;
- logs?: any[]; // Optional calculation logs
46
+ logs?: CalculationLog[]; // Optional calculation logs
47
48
49
// Union type to handle both response formats
0 commit comments