import { QuestionCollection } from "inquirer"; export interface CreatorConstantsPros { installer: { confirmation: (packages: string, count: number) => QuestionCollection; }; neededDeps: { [set: string]: PackageType[]; }; } export interface PackageType { packageName: string; commandType: "--save" | "--save-dev"; } export interface FullDependencies { installedDeps: string[]; neededDeps: PackageType[]; }