UNPKG

maests

Version:

An executable compiler for creating Maestro's yaml-flows with typescript.

7 lines (6 loc) 250 B
import { WhenCondition } from "./type"; export declare const runScript: (path: string | (() => void), funcName?: string) => void; export declare const runFlow: ({ flow, condition, }: { flow: () => void; condition?: WhenCondition; }) => void;