UNPKG

rush-init-project-plugin

Version:

Rush plugin for initialize project in monorepo

14 lines 505 B
import { Answers } from 'inquirer'; import type { NodePlopAPI, PlopCfg } from 'node-plop'; import type { ICliParams } from './init-project'; export interface IExtendedAnswers extends Answers { authorName: string; description: string; template: string; packageName: string; unscopedPackageName: string; projectFolder: string; shouldRunRushUpdate: boolean; } export default function (plop: NodePlopAPI, plopCfg: PlopCfg & ICliParams): void; //# sourceMappingURL=plopfile.d.ts.map