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)

graph LR emitProgress["emitProgress"] runLoop["runLoop"] runLoop -->|calls| emitProgress style emitProgress fill:#dbeafe,stroke:#2563eb,stroke-width:2px click emitProgress "fc32d58a10988ff8.html" click runLoop "c94a70bb97b4ccad.html"
SourceType
runLoop calls