UNPKG

maests

Version:

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

9 lines (7 loc) 213 B
import { M } from "maests"; import { nestScript } from "./nest-script"; export const openApp = () => { M.initFlow({ appId: "com.my.app" }); M.launchApp({ appId: "com.my.app" }); M.runScript(nestScript); };