UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

10 lines 319 B
import Command from '../../command.js'; export default class ReverseCommand extends Command { async execute(remote, local) { await this._send(`reverse:forward:${remote};${local}`); await this.readOKAY(); await this.readOKAY(); return true; } } //# sourceMappingURL=reverse.js.map