@yume-chan/adb
Version:
TypeScript implementation of Android Debug Bridge (ADB) protocol.
25 lines • 757 B
JavaScript
import { AdbFeature } from "../../features.js";
import { AdbNoneProtocolSubprocessService } from "./none/index.js";
import { AdbShellProtocolSubprocessService } from "./shell/index.js";
export class AdbSubprocessService {
get adb() {
return this.
}
get noneProtocol() {
return this.
}
get shellProtocol() {
return this.
}
constructor(adb) {
this.
this.
if (adb.canUseFeature(AdbFeature.ShellV2)) {
this.
}
}
}
//# sourceMappingURL=service.js.map