UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

9 lines 294 B
import Command from '../../command.js'; export default class TcpCommand extends Command { async execute(port, host) { await this._send(`tcp:${port}` + (host ? `:${host}` : '')); await this.readOKAY(); return this.parser.raw(); } } //# sourceMappingURL=tcp.js.map