gluegun
Version:
A delightful toolkit for building Node-powered CLIs.
9 lines (8 loc) • 309 B
TypeScript
import { GluegunPrompt } from './prompt-types';
/**
* We're replicating the interface of Enquirer in order to
* "lazy load" the package only if and when we actually are asked for it.
* This results in a significant speed increase.
*/
declare const prompt: GluegunPrompt;
export { prompt, GluegunPrompt };