UNPKG

435 BTypeScriptView Raw
1import * as inquirer from 'inquirer';
2import { Tags, Answers } from './types';
3export declare function getQuestions(possibleTargets: Record<Tags, boolean>): inquirer.Question[];
4export declare function getApplicationTypeChoices(possibleTargets: Record<Tags, boolean>): {
5 name: string;
6 key: string;
7 value: Tags[];
8 checked: boolean;
9}[];
10export declare function getPluginChoices(answers: Answers): inquirer.ChoiceType[];