Initial commit.

This commit is contained in:
Yang Chen
2019-11-06 02:46:20 +11:00
commit 8425a60746
16 changed files with 6090 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Creates and launches a new AVD instance with the specified configurations.
*/
function startEmulator() {
return __awaiter(this, void 0, void 0, function* () {
// TODO
});
}
exports.startEmulator = startEmulator;