UNPKG

maests

Version:

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

23 lines (17 loc) 646 B
import type { APIResult } from "./type"; import { hello } from "./hello"; export const someScript = () => { // typed http request const body = http.get("https://jsonplaceholder.typicode.com/todos/1").body; const result = json<APIResult>(body); console.log("id " + result.userId); // you can use environment variables console.log(`appId from env: ${process.env.APP_ID}`); // you can use imported functions console.log("imported file " + hello()); if (maestro.platform === "android") { console.log("platform is android"); } // set a variable to output to use in flow output.id = "com.my.app:id/action_bar_root"; };