Files
gridpilot.gg/packages/automation/domain/entities/StepExecution.ts
2025-12-04 11:54:42 +01:00

9 lines
182 B
TypeScript

import { StepId } from '../value-objects/StepId';
export interface StepExecution {
stepId: StepId;
startedAt: Date;
completedAt?: Date;
success: boolean;
error?: string;
}