UNPKG

@captive/plop-config

Version:
23 lines (22 loc) 631 B
export interface TechDiveInGeneratorOptions { techDiveInPath: string; } export declare const techDiveInGenerator: (options: TechDiveInGeneratorOptions) => { name: string; generator: { prompts: { name: string; type: "input"; message: string; validate: (promptValue: string) => boolean | string; }[]; actions: (answers: import("inquirer").Answers | undefined) => { path: string; template: string; type: "add"; data: { issueId: string | undefined; }; }[]; }; };