added exports in all functions

This commit is contained in:
Atharva Mulmuley
2021-06-03 11:37:21 +05:30
parent 1245f455e5
commit 1efc794ed7
4 changed files with 14 additions and 7 deletions
+2
View File
@@ -79,6 +79,7 @@ exports.getArcKubeconfig = getArcKubeconfig;
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
exports.sleep = sleep;
function executeAzCliCommand(command, silent, execOptions = {}, args = []) {
return __awaiter(this, void 0, void 0, function* () {
execOptions.silent = !!silent;
@@ -90,3 +91,4 @@ function executeAzCliCommand(command, silent, execOptions = {}, args = []) {
}
});
}
exports.executeAzCliCommand = executeAzCliCommand;