UNPKG

@mariozechner/create-app

Version:

Project scaffolding for TypeScript applications and libraries

13 lines 308 B
export interface TemplateConfig { name: string; description: string; inherits?: string[]; prompts: Prompt[]; } export interface Prompt { name: string; type: "text" | "number" | "bool"; message: string; initial?: string | number | boolean; } //# sourceMappingURL=types.d.ts.map