UNPKG

@pagopa/dx-cli

Version:

A CLI useful to manage DX tools.

11 lines (10 loc) 413 B
import { type PlopGeneratorConfig } from "node-plop"; import { z } from "zod/v4"; export declare const payloadSchema: z.ZodObject<{ repoDescription: z.ZodOptional<z.ZodString>; repoName: z.ZodString; repoOwner: z.ZodDefault<z.ZodString>; }, z.core.$strip>; export type Payload = z.infer<typeof payloadSchema>; declare const getPrompts: () => PlopGeneratorConfig["prompts"]; export default getPrompts;