@yume-chan/adb
Version:
TypeScript implementation of Android Debug Bridge (ADB) protocol.
14 lines • 521 B
TypeScript
import type { Adb } from "../../../adb.js";
import { AdbShellProtocolPtyProcess } from "./pty.js";
import { AdbShellProtocolSpawner } from "./spawner.js";
export declare class AdbShellProtocolSubprocessService extends AdbShellProtocolSpawner {
#private;
get adb(): Adb;
get isSupported(): boolean;
constructor(adb: Adb);
pty(options?: {
command?: string | string[] | undefined;
terminalType?: string;
}): Promise<AdbShellProtocolPtyProcess>;
}
//# sourceMappingURL=service.d.ts.map