reblessed
Version:
A high-level terminal interface library for node.js.
17 lines • 438 B
TypeScript
export = Prompt;
/**
* Prompt
*/
declare function Prompt(options: any): Prompt;
declare class Prompt {
/**
* Prompt
*/
constructor(options: any);
__proto__: any;
type: string;
input: (text: any, value: any, callback: any) => void;
setInput: (text: any, value: any, callback: any) => void;
readInput(text: any, value: any, callback: any): void;
}
//# sourceMappingURL=prompt.d.ts.map