feat(adb): rewrite process spawner API (#739)

This commit is contained in:
Simon Chan 2025-04-02 15:20:05 +08:00 committed by GitHub
parent 46e78401a4
commit d3019ce738
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
75 changed files with 1422 additions and 1022 deletions

View file

@ -14,7 +14,7 @@ function nodeSocketToConnection(
): AdbServerClient.ServerConnection {
socket.setNoDelay(true);
const closed = new Promise<void>((resolve) => {
const closed = new Promise<undefined>((resolve) => {
socket.on("close", resolve);
});