2016-06-10 01:10:21 +00:00
|
|
|
import "typings-global";
|
2016-05-12 01:27:45 +00:00
|
|
|
import "./smartcli.interfaces";
|
2016-05-10 01:18:40 +00:00
|
|
|
/**
|
|
|
|
* executes callback with answer to question as argument
|
|
|
|
* @param questionString the question you want to ask the user
|
|
|
|
* @param cb the function to execute with answer as param
|
|
|
|
* @returns {null}
|
|
|
|
*/
|
|
|
|
export declare let getAnswer: (questionString: string, cb: any) => any;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param questionString
|
|
|
|
* @param choiceOptions
|
|
|
|
* @param cb
|
|
|
|
* @returns {null}
|
|
|
|
*/
|
|
|
|
export declare let getChoice: (questionString: string, choiceOptions: string[], cb: any) => any;
|