ReplayProgress interface exported

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

Metrics

LOC: 12 Complexity: 1 Params: 0

Signature

interface ReplayProgress

Summary

Progress update emitted by the orchestrator

Source Code

export interface ReplayProgress {
  /** Current step index (0-based) */
  stepIndex: number;
  /** Total number of steps */
  total: number;
  /** Label of the current step action */
  currentAction: FlowActionType;
  /** Current orchestrator status */
  status: ReplayStatus;
  /** ID of the current step */
  stepId: string;
}

No outgoing dependencies.

Impact (Incoming)

graph LR ReplayProgress["ReplayProgress"] TabId["TabId"] renderShell["renderShell"] OrchestratorCallbacks["OrchestratorCallbacks"] TabId -->|uses| ReplayProgress renderShell -->|uses| ReplayProgress OrchestratorCallbacks -->|uses| ReplayProgress style ReplayProgress fill:#dbeafe,stroke:#2563eb,stroke-width:2px click ReplayProgress "b7cf30a5815ea76b.html" click TabId "842c31431f632e39.html" click renderShell "49d8574256a889e1.html" click OrchestratorCallbacks "984a6b93df2ea9af.html"
SourceType
TabId uses
renderShell uses
OrchestratorCallbacks uses