UNPKG

@jasondark/proompt

Version:

CLI tool for running AI prompts with structure and repeatability

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