UNPKG

@yume-chan/adb

Version:

TypeScript implementation of Android Debug Bridge (ADB) protocol.

15 lines 397 B
import { buffer, struct, u32, u8 } from "@yume-chan/struct"; export const AdbShellProtocolId = { Stdin: 0, Stdout: 1, Stderr: 2, Exit: 3, CloseStdin: 4, WindowSizeChange: 5, }; // This packet format is used in both directions. export const AdbShellProtocolPacket = struct({ id: u8(), data: buffer(u32), }, { littleEndian: true }); //# sourceMappingURL=shared.js.map