emitProgress function
Last updated: 2026-03-05T10:53:28.864Z
Metrics
LOC: 10
Complexity: 2
Params: 1
Signature
emitProgress(step: FlowStep): : void
Source Code
function emitProgress(step: FlowStep): void {
if (!flow) return;
callbacks.onProgress?.({
stepIndex,
total: flow.steps.length,
currentAction: step.action,
status,
stepId: step.id,
});
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| runLoop | calls |