A collection of common interactive command line user interfaces
npm install interrogatorA collection of common interactive command line user interfaces
```
yarn add interrogator
`ts
import * as interrogator from 'interrogator';
const answer = await interrogator.list('Pick an option', [
'a',
'b',
'c',
] as const);
``