@mastra/core
Version:
Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
18 lines • 972 B
TypeScript
import type { StepFlowEntry } from '../../index.js';
import type { PubSub } from '../../../events/index.js';
import type { StepExecutor } from '../step-executor.js';
import type { ProcessorArgs } from '.';
export declare function processWorkflowParallel({ workflowId, runId, executionPath, stepResults, activeSteps, resumeSteps, timeTravel, prevResult, resumeData, parentWorkflow, runtimeContext, }: ProcessorArgs, { pubsub, step, }: {
pubsub: PubSub;
step: Extract<StepFlowEntry, {
type: 'parallel';
}>;
}): Promise<void>;
export declare function processWorkflowConditional({ workflowId, runId, executionPath, stepResults, activeSteps, resumeSteps, timeTravel, prevResult, resumeData, parentWorkflow, runtimeContext, }: ProcessorArgs, { pubsub, stepExecutor, step, }: {
pubsub: PubSub;
stepExecutor: StepExecutor;
step: Extract<StepFlowEntry, {
type: 'conditional';
}>;
}): Promise<void>;
//# sourceMappingURL=parallel.d.ts.map