UNPKG

@yume-chan/adb

Version:

TypeScript implementation of Android Debug Bridge (ADB) protocol.

16 lines (12 loc) 295 B
import { AutoDisposable } from "@yume-chan/event"; import type { Adb } from "../adb.js"; export class AdbServiceBase extends AutoDisposable { readonly #adb: Adb; get adb() { return this.#adb; } constructor(adb: Adb) { super(); this.#adb = adb; } }