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