@u4/adbkit
Version:
A Typescript client for the Android Debug Bridge.
16 lines • 589 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const sync_1 = __importDefault(require("../../sync"));
const command_1 = __importDefault(require("../../command"));
class SyncCommand extends command_1.default {
async execute() {
await this._send('sync:');
await this.readOKAY();
return new sync_1.default(this.connection);
}
}
exports.default = SyncCommand;
//# sourceMappingURL=sync.js.map