UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

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