@jasondark/proompt
Version:
CLI tool for running AI prompts with structure and repeatability
11 lines • 385 B
TypeScript
import { z } from 'zod';
export declare const executePlanArgsSchema: z.ZodIntersection<z.ZodObject<{
planPath: z.ZodString;
}, z.core.$strip>, z.ZodObject<{
llmCli: z.ZodOptional<z.ZodEnum<{
claude: "claude";
gemini: "gemini";
}>>;
}, z.core.$strip>>;
export type ExecutePlanArgs = z.infer<typeof executePlanArgsSchema>;
//# sourceMappingURL=schema.d.ts.map