UNPKG

@yume-chan/adb

Version:

TypeScript implementation of Android Debug Bridge (ADB) protocol.

12 lines 267 B
import { AutoDisposable } from "@yume-chan/event"; export class AdbServiceBase extends AutoDisposable { #adb; get adb() { return this.#adb; } constructor(adb) { super(); this.#adb = adb; } } //# sourceMappingURL=base.js.map