ReplayStatus type exported

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

Metrics

LOC: 7 Complexity: 1 Params: 0

Signature

type ReplayStatus

Summary

Replay orchestrator state machine

Source Code

export type ReplayStatus =
  | "idle"
  | "preparing"
  | "running"
  | "paused"
  | "completed"
  | "failed";

No outgoing dependencies.

Impact (Incoming)

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