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