ReplayResult interface exported

Last updated: 2026-03-05T10:53:28.859Z

Metrics

LOC: 16 Complexity: 1 Params: 0

Signature

interface ReplayResult

Summary

Result reported after full replay completion

Source Code

export interface ReplayResult {
  /** Final status */
  status: "completed" | "failed";
  /** Total number of steps attempted */
  totalSteps: number;
  /** Number of successful steps */
  successCount: number;
  /** Number of skipped steps */
  skippedCount: number;
  /** Number of failed steps */
  failedCount: number;
  /** Total replay duration (ms) */
  durationMs: number;
  /** Per-step results */
  stepResults: Array<{ stepId: string; result: StepResult }>;
}

No outgoing dependencies.

Impact (Incoming)

graph LR ReplayResult["ReplayResult"] OrchestratorCallbacks["OrchestratorCallbacks"] OrchestratorCallbacks -->|uses| ReplayResult style ReplayResult fill:#dbeafe,stroke:#2563eb,stroke-width:2px click ReplayResult "c95b56555f222ab8.html" click OrchestratorCallbacks "984a6b93df2ea9af.html"
SourceType
OrchestratorCallbacks uses