(args: {
runId: string;
experimentId: string;
timestamp: string;
emissions: number;
energyConsumed: number;
durationSeconds: number;
})
| 225 | } |
| 226 | |
| 227 | function makeRunRow(args: { |
| 228 | runId: string; |
| 229 | experimentId: string; |
| 230 | timestamp: string; |
| 231 | emissions: number; |
| 232 | energyConsumed: number; |
| 233 | durationSeconds: number; |
| 234 | }): MockRunRow { |
| 235 | return { |
| 236 | run_id: args.runId, |
| 237 | experiment_id: args.experimentId, |
| 238 | emissions: args.emissions, |
| 239 | timestamp: args.timestamp, |
| 240 | energy_consumed: args.energyConsumed, |
| 241 | duration: args.durationSeconds, |
| 242 | }; |
| 243 | } |
| 244 | |
| 245 | // ─── Composed data (built top-down from the aggregate root) ──────────────── |
| 246 |
no outgoing calls
no test coverage detected
searching dependent graphs…