ReplayConfig interface exported
Last updated: 2026-03-05T10:53:28.859Z
Location
Metrics
LOC: 14
Complexity: 1
Params: 0
Signature
interface ReplayConfig
Summary
Configuration for replay timing and visual behaviour
Source Code
export interface ReplayConfig {
/** Global speed multiplier preset */
speed: ReplaySpeed;
/** Milliseconds per character during typing simulation (default: 60) */
typingDelay: number;
/** Milliseconds between steps (default: 800) */
stepDelay: number;
/** Whether to use the original recorded timing deltas */
useRecordedTimings: boolean;
/** Milliseconds to highlight an element before interacting (default: 300) */
highlightDuration: number;
/** Whether to display a synthetic cursor overlay during replay (default: true) */
showCursor: boolean;
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| parseFlowScript | uses |
| OrchestratorCallbacks | uses |
| executeStep | uses |
| validFlowStep | uses |
| assertFailed | uses |