UNPKG

@workflow-manager/runner

Version:

CLI runner for in-memory and markdown workflow orchestration using ATEP-like envelopes

6 lines (5 loc) 378 B
import type { WorkflowDefinition } from "./types.js"; export declare function parseWorkflowMarkdown(filePath: string): WorkflowDefinition; export declare function parseWorkflowJson(filePath: string): WorkflowDefinition; export declare function parseWorkflowFile(filePath: string): WorkflowDefinition; export declare function validateWorkflow(def: WorkflowDefinition): string[];