update smartcli

This commit is contained in:
2016-09-04 17:23:29 +02:00
parent b67e3c0de1
commit 5c67015779
7 changed files with 15 additions and 15 deletions

View File

@@ -13,7 +13,7 @@ export interface commandPromiseObject {
};
export class Smartcli {
argv;
argv:any;
questionsDone;
parseStarted;
commands;
@@ -23,7 +23,7 @@ export class Smartcli {
// maps
allCommandPromises = new Objectmap<commandPromiseObject>();
constructor(){
this.argv = plugins.argv;
this.argv = plugins.yargs;
this.questionsDone = plugins.q.defer();
this.parseStarted = plugins.q.defer();
};