@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
9 lines • 783 B
TypeScript
import type { z } from 'zod';
import type { Step } from './step';
import type { DefaultEngineType, WorkflowConfig } from './workflow';
import { Workflow as BaseWorkflow } from './workflow';
export * from './index';
export declare class Workflow<TEngineType = DefaultEngineType, TSteps extends Step<string, any, any, any, any, TEngineType>[] = Step<string, any, any, any, any, TEngineType>[], TWorkflowId extends string = string, TInput extends z.ZodType<any> = z.ZodType<any>, TOutput extends z.ZodType<any> = z.ZodType<any>, TPrevSchema extends z.ZodType<any> = TInput> extends BaseWorkflow<TEngineType, TSteps, TWorkflowId, TInput, TOutput, TPrevSchema> {
constructor(args: WorkflowConfig<TWorkflowId, TInput, TOutput, TSteps>);
}
//# sourceMappingURL=workflow.warning.d.ts.map