ReplayProgress interface exported
Last updated: 2026-03-05T10:53:28.859Z
Location
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)
| Source | Type |
|---|---|
| TabId | uses |
| renderShell | uses |
| OrchestratorCallbacks | uses |