ReplayOrchestrator interface exported

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

Metrics

LOC: 14 Complexity: 1 Params: 0

Signature

interface ReplayOrchestrator

Source Code

export interface ReplayOrchestrator {
  /** Current replay status */
  readonly status: ReplayStatus;
  /** Start replay of a FlowScript */
  start(flow: FlowScript, configOverride?: Partial<ReplayConfig>): void;
  /** Pause the current replay */
  pause(): void;
  /** Resume a paused replay */
  resume(): void;
  /** Stop the current replay (cannot resume) */
  stop(): void;
  /** Handle step-complete message coming from the content script */
  handleStepComplete(payload: StepCompletePayload): void;
}

No outgoing dependencies.

Impact (Incoming)

graph LR ReplayOrchestrator["ReplayOrchestrator"] handle["handle"] handle -->|uses| ReplayOrchestrator style ReplayOrchestrator fill:#dbeafe,stroke:#2563eb,stroke-width:2px click ReplayOrchestrator "bf6330bdd180ab3f.html" click handle "3b3925f07e1ac5c3.html"
SourceType
handle uses