@u4/adbkit
Version:
A Typescript client for the Android Debug Bridge.
10 lines • 335 B
JavaScript
import Command from '../../command.js';
export default class KillForwardCommand extends Command {
async execute(serial, local) {
await this._send(`host-serial:${serial}:killforward:${local}`);
await this.readOKAY();
await this.readOKAY();
return true;
}
}
//# sourceMappingURL=killForward.js.map