@vidavidorra/create-project
Version:
Interactively create a GitHub project
19 lines (18 loc) • 633 B
TypeScript
import { z } from 'zod';
declare const schema: z.ZodObject<{
project: z.ZodString;
package: z.ZodString;
public: z.ZodDefault<z.ZodBoolean>;
description: z.ZodString;
author: z.ZodString;
typescript: z.ZodBoolean;
testing: z.ZodDefault<z.ZodBoolean>;
reportCodeCoverage: z.ZodDefault<z.ZodBoolean>;
githubOwner: z.ZodString;
githubRepository: z.ZodString;
path: z.ZodString;
dryRun: z.ZodDefault<z.ZodBoolean>;
}, z.core.$strict>;
type OptionsInput = z.input<typeof schema>;
type Options = z.infer<typeof schema>;
export { schema, schema as options, type Options, type OptionsInput };