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