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)
| Source | Type |
|---|---|
| handle | uses |