UNPKG

@quo0/stiletto

Version:

With stiletto library you will be able to mock requests and choose between preconfigured responses right on the fly via UI

6 lines (5 loc) 229 B
import type { QuestionCollection } from 'inquirer'; export declare type IQuestionCollection = QuestionCollection; export interface IPromptService { ask: <IAnswers>(questions: IQuestionCollection) => Promise<IAnswers>; }