UNPKG

@jasondark/proompt

Version:

CLI tool for running AI prompts with structure and repeatability

12 lines 421 B
import { z } from 'zod'; export declare const validatePlanArgsSchema: z.ZodIntersection<z.ZodObject<{ planPath: z.ZodString; }, z.core.$strip>, z.ZodObject<{ llmCli: z.ZodOptional<z.ZodEnum<{ claude: "claude"; gemini: "gemini"; }>>; outputFilePath: z.ZodString; }, z.core.$strip>>; export type ValidatePlanArgs = z.infer<typeof validatePlanArgsSchema>; //# sourceMappingURL=schema.d.ts.map