alvamind-workflow
Version:
A lightweight and flexible workflow automation library for JavaScript/TypeScript projects
10 lines • 397 B
TypeScript
import { WorkflowConfig } from "./types.js";
/**
* Parses a YAML workflow configuration and transforms string conditions
* into executable functions.
*
* @param yamlContent The YAML content as a string
* @returns A WorkflowConfig with properly transformed conditions
*/
export declare function parseWorkflowYaml(yamlContent: string): WorkflowConfig;
//# sourceMappingURL=yaml-parser.d.ts.map