Interactive checklist prompt
y0hami opened this issue · 0 comments
y0hami commented
Description
A prompt which allows users to select multiple options, inquirer already has this kind of prompt https://github.com/SBoudrias/Inquirer.js/#checkbox---type-checkbox
Solution?
const checklist = {
type: 'checklist',
query: 'What languages do you know?',
handle: 'langs',
menu: [
'English',
'French',
'German',
'Spanish'
]
};
qoa.checklist(checklist).then(log);