We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to add the shows but it's not working nor is shell running.
import open from "open"; import logger from "./lib/logger"; import { Flow } from "./lib/flow"; import { z } from "zod"; const events = ["fetch"] as const; type Events = (typeof events)[number]; const flow = new Flow<Events>(""); flow.on("query" , (params) =>{ const [query] = z.array(z.string()).parse(params); let promt:string = query; flow.showResult({ title: query, method: "fetch", parameters: [promt], dontHideAfterAction: true, iconPath: "test", }) } ) flow.on("fetch", async (params) => { const [promt] = z.array(z.string()).parse(params); let message = "test" flow.shellRun({ command: "echo " + message, }) }) flow.run()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to add the shows but it's not working nor is shell running.
The text was updated successfully, but these errors were encountered: