added exports for all functions

This commit is contained in:
Atharva Mulmuley
2021-06-03 11:45:03 +05:30
parent ec4658ba67
commit 69db96d47b
4 changed files with 11 additions and 4 deletions

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;