UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

10 lines 320 B
import Command from '../../command.js'; import JdwpTracker from '../../jdwptracker.js'; export default class TrackJdwpCommand extends Command { async execute() { await this._send('track-jdwp'); await this.readOKAY(); return new JdwpTracker(this); } } //# sourceMappingURL=trackjdwp.js.map