index.js (937B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 "use strict"; 6 7 const { 8 listDevices, 9 } = require("resource://devtools/client/shared/remote-debugging/adb/commands/list-devices.js"); 10 const { 11 prepareTCPConnection, 12 } = require("resource://devtools/client/shared/remote-debugging/adb/commands/prepare-tcp-connection.js"); 13 const { 14 runCommand, 15 } = require("resource://devtools/client/shared/remote-debugging/adb/commands/run-command.js"); 16 const { 17 shell, 18 } = require("resource://devtools/client/shared/remote-debugging/adb/commands/shell.js"); 19 const { 20 TrackDevicesCommand, 21 } = require("resource://devtools/client/shared/remote-debugging/adb/commands/track-devices.js"); 22 23 module.exports = { 24 listDevices, 25 prepareTCPConnection, 26 runCommand, 27 shell, 28 TrackDevicesCommand, 29 };