@yume-chan/adb 1.0.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +1 -1
  3. package/esm/adb.d.ts +7 -6
  4. package/esm/adb.d.ts.map +1 -1
  5. package/esm/adb.js +22 -22
  6. package/esm/adb.js.map +1 -1
  7. package/esm/banner.js.map +1 -1
  8. package/esm/commands/base.d.ts +3 -2
  9. package/esm/commands/base.d.ts.map +1 -1
  10. package/esm/commands/base.js +6 -3
  11. package/esm/commands/base.js.map +1 -1
  12. package/esm/commands/framebuffer.d.ts +6 -6
  13. package/esm/commands/power.d.ts +2 -2
  14. package/esm/commands/power.d.ts.map +1 -1
  15. package/esm/commands/power.js +4 -4
  16. package/esm/commands/power.js.map +1 -1
  17. package/esm/commands/reverse.d.ts +3 -4
  18. package/esm/commands/reverse.d.ts.map +1 -1
  19. package/esm/commands/reverse.js +5 -10
  20. package/esm/commands/reverse.js.map +1 -1
  21. package/esm/commands/subprocess/index.d.ts +3 -2
  22. package/esm/commands/subprocess/index.d.ts.map +1 -1
  23. package/esm/commands/subprocess/index.js +3 -2
  24. package/esm/commands/subprocess/index.js.map +1 -1
  25. package/esm/commands/subprocess/none/index.d.ts +5 -0
  26. package/esm/commands/subprocess/none/index.d.ts.map +1 -0
  27. package/esm/commands/subprocess/none/index.js +5 -0
  28. package/esm/commands/subprocess/none/index.js.map +1 -0
  29. package/esm/commands/subprocess/none/process.d.ts +13 -0
  30. package/esm/commands/subprocess/none/process.d.ts.map +1 -0
  31. package/esm/commands/subprocess/none/process.js +36 -0
  32. package/esm/commands/subprocess/none/process.js.map +1 -0
  33. package/esm/commands/subprocess/none/pty.d.ts +15 -0
  34. package/esm/commands/subprocess/none/pty.d.ts.map +1 -0
  35. package/esm/commands/subprocess/none/pty.js +29 -0
  36. package/esm/commands/subprocess/none/pty.js.map +1 -0
  37. package/esm/commands/subprocess/none/service.d.ts +10 -0
  38. package/esm/commands/subprocess/none/service.d.ts.map +1 -0
  39. package/esm/commands/subprocess/none/service.js +32 -0
  40. package/esm/commands/subprocess/none/service.js.map +1 -0
  41. package/esm/commands/subprocess/none/spawner.d.ts +19 -0
  42. package/esm/commands/subprocess/none/spawner.d.ts.map +1 -0
  43. package/esm/commands/subprocess/none/spawner.js +26 -0
  44. package/esm/commands/subprocess/none/spawner.js.map +1 -0
  45. package/esm/commands/subprocess/pty.d.ts +10 -0
  46. package/esm/commands/subprocess/pty.d.ts.map +1 -0
  47. package/esm/commands/subprocess/pty.js +2 -0
  48. package/esm/commands/subprocess/pty.js.map +1 -0
  49. package/esm/commands/subprocess/service.d.ts +11 -0
  50. package/esm/commands/subprocess/service.d.ts.map +1 -0
  51. package/esm/commands/subprocess/service.js +25 -0
  52. package/esm/commands/subprocess/service.js.map +1 -0
  53. package/esm/commands/subprocess/shell/index.d.ts +6 -0
  54. package/esm/commands/subprocess/shell/index.d.ts.map +1 -0
  55. package/esm/commands/subprocess/shell/index.js +6 -0
  56. package/esm/commands/subprocess/shell/index.js.map +1 -0
  57. package/esm/commands/subprocess/shell/process.d.ts +15 -0
  58. package/esm/commands/subprocess/shell/process.d.ts.map +1 -0
  59. package/esm/commands/subprocess/{protocols/shell.js → shell/process.js} +27 -54
  60. package/esm/commands/subprocess/shell/process.js.map +1 -0
  61. package/esm/commands/subprocess/shell/pty.d.ts +15 -0
  62. package/esm/commands/subprocess/shell/pty.d.ts.map +1 -0
  63. package/esm/commands/subprocess/shell/pty.js +76 -0
  64. package/esm/commands/subprocess/shell/pty.js.map +1 -0
  65. package/esm/commands/subprocess/shell/service.d.ts +14 -0
  66. package/esm/commands/subprocess/shell/service.d.ts.map +1 -0
  67. package/esm/commands/subprocess/shell/service.js +41 -0
  68. package/esm/commands/subprocess/shell/service.js.map +1 -0
  69. package/esm/commands/subprocess/shell/shared.d.ts +19 -0
  70. package/esm/commands/subprocess/shell/shared.d.ts.map +1 -0
  71. package/esm/commands/subprocess/shell/shared.js +15 -0
  72. package/esm/commands/subprocess/shell/shared.js.map +1 -0
  73. package/esm/commands/subprocess/shell/spawner.d.ts +24 -0
  74. package/esm/commands/subprocess/shell/spawner.d.ts.map +1 -0
  75. package/esm/commands/subprocess/shell/spawner.js +38 -0
  76. package/esm/commands/subprocess/shell/spawner.js.map +1 -0
  77. package/esm/commands/subprocess/utils.d.ts +1 -0
  78. package/esm/commands/subprocess/utils.d.ts.map +1 -1
  79. package/esm/commands/subprocess/utils.js +37 -0
  80. package/esm/commands/subprocess/utils.js.map +1 -1
  81. package/esm/commands/sync/list.d.ts +12 -8
  82. package/esm/commands/sync/list.d.ts.map +1 -1
  83. package/esm/commands/sync/list.js +5 -7
  84. package/esm/commands/sync/list.js.map +1 -1
  85. package/esm/commands/sync/pull.d.ts +4 -4
  86. package/esm/commands/sync/pull.d.ts.map +1 -1
  87. package/esm/commands/sync/pull.js +2 -7
  88. package/esm/commands/sync/pull.js.map +1 -1
  89. package/esm/commands/sync/push.d.ts +4 -4
  90. package/esm/commands/sync/request.d.ts +1 -1
  91. package/esm/commands/sync/response.d.ts +5 -5
  92. package/esm/commands/sync/response.d.ts.map +1 -1
  93. package/esm/commands/sync/response.js +2 -1
  94. package/esm/commands/sync/response.js.map +1 -1
  95. package/esm/commands/sync/stat.d.ts +4 -4
  96. package/esm/commands/sync/sync.d.ts +2 -2
  97. package/esm/commands/sync/sync.js +1 -1
  98. package/esm/commands/sync/sync.js.map +1 -1
  99. package/esm/commands/tcpip.d.ts +2 -2
  100. package/esm/commands/tcpip.js +2 -2
  101. package/esm/daemon/dispatcher.d.ts.map +1 -1
  102. package/esm/daemon/dispatcher.js.map +1 -1
  103. package/esm/daemon/packet.d.ts +6 -4
  104. package/esm/daemon/packet.d.ts.map +1 -1
  105. package/esm/daemon/packet.js +3 -5
  106. package/esm/daemon/packet.js.map +1 -1
  107. package/esm/daemon/socket.d.ts +2 -2
  108. package/esm/daemon/socket.d.ts.map +1 -1
  109. package/esm/daemon/socket.js +1 -1
  110. package/esm/daemon/socket.js.map +1 -1
  111. package/esm/device-observer.d.ts +4 -4
  112. package/esm/device-observer.d.ts.map +1 -1
  113. package/esm/server/client.d.ts +15 -57
  114. package/esm/server/client.d.ts.map +1 -1
  115. package/esm/server/client.js +66 -263
  116. package/esm/server/client.js.map +1 -1
  117. package/esm/server/commands/index.d.ts +3 -0
  118. package/esm/server/commands/index.d.ts.map +1 -0
  119. package/esm/server/commands/index.js +3 -0
  120. package/esm/server/commands/index.js.map +1 -0
  121. package/esm/server/commands/m-dns.d.ts +12 -0
  122. package/esm/server/commands/m-dns.d.ts.map +1 -0
  123. package/esm/server/commands/m-dns.js +38 -0
  124. package/esm/server/commands/m-dns.js.map +1 -0
  125. package/esm/server/commands/wireless.d.ts +27 -0
  126. package/esm/server/commands/wireless.d.ts.map +1 -0
  127. package/esm/server/commands/wireless.js +82 -0
  128. package/esm/server/commands/wireless.js.map +1 -0
  129. package/esm/server/index.d.ts +2 -0
  130. package/esm/server/index.d.ts.map +1 -1
  131. package/esm/server/index.js +2 -0
  132. package/esm/server/index.js.map +1 -1
  133. package/esm/server/observer.d.ts +9 -0
  134. package/esm/server/observer.d.ts.map +1 -0
  135. package/esm/server/observer.js +128 -0
  136. package/esm/server/observer.js.map +1 -0
  137. package/esm/server/stream.d.ts +19 -0
  138. package/esm/server/stream.d.ts.map +1 -0
  139. package/esm/server/stream.js +77 -0
  140. package/esm/server/stream.js.map +1 -0
  141. package/esm/server/transport.d.ts +3 -4
  142. package/esm/server/transport.d.ts.map +1 -1
  143. package/esm/server/transport.js +18 -16
  144. package/esm/server/transport.js.map +1 -1
  145. package/esm/utils/index.d.ts +1 -0
  146. package/esm/utils/index.d.ts.map +1 -1
  147. package/esm/utils/index.js +1 -0
  148. package/esm/utils/index.js.map +1 -1
  149. package/esm/utils/ref.d.ts +18 -0
  150. package/esm/utils/ref.d.ts.map +1 -0
  151. package/esm/utils/ref.js +29 -0
  152. package/esm/utils/ref.js.map +1 -0
  153. package/package.json +10 -10
  154. package/src/adb.ts +29 -28
  155. package/src/banner.ts +4 -4
  156. package/src/commands/base.ts +6 -3
  157. package/src/commands/power.ts +6 -6
  158. package/src/commands/reverse.ts +9 -12
  159. package/src/commands/subprocess/index.ts +3 -2
  160. package/src/commands/subprocess/none/index.ts +4 -0
  161. package/src/commands/subprocess/none/process.ts +56 -0
  162. package/src/commands/subprocess/none/pty.ts +45 -0
  163. package/src/commands/subprocess/none/service.ts +42 -0
  164. package/src/commands/subprocess/none/spawner.ts +68 -0
  165. package/src/commands/subprocess/pty.ts +15 -0
  166. package/src/commands/subprocess/service.ts +32 -0
  167. package/src/commands/subprocess/shell/index.ts +5 -0
  168. package/src/commands/subprocess/shell/process.ts +127 -0
  169. package/src/commands/subprocess/shell/pty.ts +112 -0
  170. package/src/commands/subprocess/shell/service.ts +58 -0
  171. package/src/commands/subprocess/shell/shared.ts +25 -0
  172. package/src/commands/subprocess/shell/spawner.ts +90 -0
  173. package/src/commands/subprocess/utils.ts +41 -0
  174. package/src/commands/sync/list.ts +7 -17
  175. package/src/commands/sync/pull.ts +2 -8
  176. package/src/commands/sync/response.ts +6 -4
  177. package/src/commands/sync/sync.ts +1 -1
  178. package/src/commands/tcpip.ts +2 -2
  179. package/src/daemon/dispatcher.ts +7 -4
  180. package/src/daemon/packet.ts +4 -8
  181. package/src/daemon/socket.ts +6 -6
  182. package/src/device-observer.ts +4 -4
  183. package/src/server/client.ts +100 -305
  184. package/src/server/commands/index.ts +2 -0
  185. package/src/server/commands/m-dns.ts +43 -0
  186. package/src/server/commands/wireless.ts +94 -0
  187. package/src/server/index.ts +2 -0
  188. package/src/server/observer.ts +172 -0
  189. package/src/server/stream.ts +100 -0
  190. package/src/server/transport.ts +38 -34
  191. package/src/utils/index.ts +1 -0
  192. package/src/utils/ref.ts +37 -0
  193. package/tsconfig.build.tsbuildinfo +1 -1
  194. package/esm/commands/subprocess/command.d.ts +0 -58
  195. package/esm/commands/subprocess/command.d.ts.map +0 -1
  196. package/esm/commands/subprocess/command.js +0 -89
  197. package/esm/commands/subprocess/command.js.map +0 -1
  198. package/esm/commands/subprocess/protocols/index.d.ts +0 -4
  199. package/esm/commands/subprocess/protocols/index.d.ts.map +0 -1
  200. package/esm/commands/subprocess/protocols/index.js +0 -4
  201. package/esm/commands/subprocess/protocols/index.js.map +0 -1
  202. package/esm/commands/subprocess/protocols/none.d.ts +0 -32
  203. package/esm/commands/subprocess/protocols/none.d.ts.map +0 -1
  204. package/esm/commands/subprocess/protocols/none.js +0 -61
  205. package/esm/commands/subprocess/protocols/none.js.map +0 -1
  206. package/esm/commands/subprocess/protocols/shell.d.ts +0 -42
  207. package/esm/commands/subprocess/protocols/shell.d.ts.map +0 -1
  208. package/esm/commands/subprocess/protocols/shell.js.map +0 -1
  209. package/esm/commands/subprocess/protocols/types.d.ts +0 -49
  210. package/esm/commands/subprocess/protocols/types.d.ts.map +0 -1
  211. package/esm/commands/subprocess/protocols/types.js +0 -2
  212. package/esm/commands/subprocess/protocols/types.js.map +0 -1
  213. package/src/commands/subprocess/command.ts +0 -141
  214. package/src/commands/subprocess/protocols/index.ts +0 -3
  215. package/src/commands/subprocess/protocols/none.ts +0 -81
  216. package/src/commands/subprocess/protocols/shell.ts +0 -171
  217. package/src/commands/subprocess/protocols/types.ts +0 -63
@@ -1 +1 @@
1
- {"fileNames":["../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/async-operation-manager.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/delay.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/promise-resolver.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/maybe-promise.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/index.d.ts","../struct/esm/bipedal.d.ts","../struct/esm/readable.d.ts","../struct/esm/field.d.ts","../struct/esm/buffer.d.ts","../struct/esm/number.d.ts","../struct/esm/string.d.ts","../struct/esm/struct.d.ts","../struct/esm/utils.d.ts","../struct/esm/index.d.ts","../stream-extra/esm/types.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/concat.d.ts","../stream-extra/esm/consumable.d.ts","../stream-extra/esm/maybe-consumable-ns.d.ts","../stream-extra/esm/maybe-consumable.d.ts","../stream-extra/esm/distribution.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/encoding.d.ts","../stream-extra/esm/inspect.d.ts","../stream-extra/esm/pipe-from.d.ts","../stream-extra/esm/push-readable.d.ts","../stream-extra/esm/split-string.d.ts","../stream-extra/esm/struct-deserialize.d.ts","../stream-extra/esm/struct-serialize.d.ts","../stream-extra/esm/task.d.ts","../stream-extra/esm/try-close.d.ts","../stream-extra/esm/wrap-writable.d.ts","../stream-extra/esm/index.d.ts","./src/features.ts","./src/banner.ts","../event/esm/disposable.d.ts","../event/esm/event.d.ts","../event/esm/event-emitter.d.ts","../event/esm/utils.d.ts","../event/esm/index.d.ts","./src/commands/base.ts","./src/commands/framebuffer.ts","./src/commands/power.ts","./src/utils/auto-reset-event.ts","./src/utils/base64.ts","./src/utils/hex.ts","./src/utils/no-op.ts","./src/utils/sequence-equal.ts","./src/utils/index.ts","./src/commands/reverse.ts","./src/commands/subprocess/protocols/types.ts","./src/commands/subprocess/protocols/none.ts","./src/commands/subprocess/protocols/shell.ts","./src/commands/subprocess/protocols/index.ts","./src/commands/subprocess/command.ts","./src/commands/subprocess/utils.ts","./src/commands/subprocess/index.ts","../no-data-view/esm/int16.d.ts","../no-data-view/esm/int32.d.ts","../no-data-view/esm/int64.d.ts","../no-data-view/esm/int8.d.ts","../no-data-view/esm/uint16.d.ts","../no-data-view/esm/uint32.d.ts","../no-data-view/esm/uint64.d.ts","../no-data-view/esm/index.d.ts","./src/commands/sync/response.ts","./src/commands/sync/request.ts","./src/commands/sync/socket.ts","./src/commands/sync/stat.ts","./src/commands/sync/list.ts","./src/commands/sync/pull.ts","./src/commands/sync/push.ts","./src/commands/sync/sync.ts","./src/commands/sync/index.ts","./src/commands/tcpip.ts","./src/commands/index.ts","./src/adb.ts","./src/device-observer.ts","./src/daemon/crypto.ts","./src/daemon/packet.ts","./src/daemon/auth.ts","./src/daemon/device.ts","./src/daemon/socket.ts","./src/daemon/dispatcher.ts","./src/daemon/transport.ts","./src/daemon/index.ts","./src/server/transport.ts","./src/server/client.ts","./src/server/index.ts","./src/index.ts"],"fileIdsList":[[81,112,113,114,155],[113],[119,156],[90,112,156],[120,121,122,129,136,153,154],[120],[90,112,128,156],[112,120,133],[133,134,135],[130,131,132],[112,130,156],[81,90,112,113,128,130,156],[81,112,156],[145,146,147,148,149,150,151,152],[90,145,146,147,148],[90,112,145,146,147],[90,112,128,145,146,147,148],[90,145],[90,144],[90,145,146,147],[112,113,136,147,148,149,150,151,156],[81,90,119,128,158,159],[144],[81,112,159],[81,90,112,144,156,159,162],[158,159,160,161,162,163,164],[90,112],[81,90,112,119,156,159,163],[81,90,112,113,114,156,159,160,163],[81,119],[113,114,128,155,156,157,165,168],[81,90,112,113,114,119,128,144,156,157,166],[166,167],[81,112,113,114,156,167],[90,123,124,125,126,127],[115,116],[115],[115,116,117,118],[116],[137,138,139,140,141,142,143],[81,92,93],[81,90,92],[92],[92,98],[81,92,100],[92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111],[92,96,98],[96,97],[91,92],[91],[90,94],[90,92],[92,93,105],[81,92],[81],[84],[81,83],[82,83,84,85,86,87,88,89],[84,85],[81,83,84],[77,78,79,80]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4942ce52738852aac9e3eb7b2743abd920ea3f62dfc930e8ab49db6672c5d292","impliedFormat":1},{"version":"f232c6de4d9dacf27320453a89e04c29b3bcc7a084ee6184de18a15e4a1a3a1d","impliedFormat":1},{"version":"557a9670c1bb00cdd5eb309ed1e28665fdefe501a4b12eb124dc1bcaa1498328","impliedFormat":1},{"version":"0bbbbb1b5a4f7a77a28dbcd2fc59311affab8cfed9dba97b5d5cf20ae7fbc3f3","impliedFormat":1},{"version":"f9e4b9df247b6b2ec942f9a043801a67c70d94014546d6d2c27d32cb729e470c","impliedFormat":1},{"version":"84205d5f1d5a9211532d46601c96f51f6ab94e040894e3d8c9f57e00df5eb1f6","impliedFormat":99},{"version":"d412902423147d07cd50d2f36264b52fb5debe7861fe29a7f67c26cd916139c3","impliedFormat":99},{"version":"757d2c1283c26949c63a7fdd78ad42f790fd32c647a25825038c8a5aad6273d2","impliedFormat":99},{"version":"5c8c12cdb0becd286f87f238226eba3bbfd72a9db08bc8824fe918657b986cc3","impliedFormat":99},{"version":"cd345858c62dc2239cb9e77ec0b5bbf3b9a817b74c8cfbd5a3171793f60dfed4","impliedFormat":99},{"version":"fe4f4446f8e0103bc75e32cfd631b19c598994292c077b0bfa04b4a08d3ba1f8","impliedFormat":99},{"version":"561e7950e0af64d20481ca8134efd8524a389bc219928ce276dbc60f03bd9c80","impliedFormat":99},{"version":"0e7c5f81cf7dc16c999d304b346382a6002366a59278023907ea8c5685800c03","impliedFormat":99},{"version":"396545f5e3d3cb7195d3cb344c824ab799f9985d9d91166c8d4c64407c091ed7","affectsGlobalScope":true,"impliedFormat":99},{"version":"39b55e816608d56a65c0341b5dbf44907cc8ce7b41a39e80503b594f156cfedb","impliedFormat":99},{"version":"705e82082894a3dc7f6b92b023914e1bf0db10788ddbdf07806002c26a1db3a9","impliedFormat":99},{"version":"93758b16a8798ec0957abf049ef5091497465d024e3b68a2be986ae984b8ebb0","impliedFormat":99},{"version":"233b3ef5dfa40f3459846e94d43c000736582e2ca85d17c496a47e582f79d102","impliedFormat":99},{"version":"256ac5c01fbbd7f17ec5d916b2cf1c4639cef6d5ac2161c82849db6cdc8d0c42","impliedFormat":99},{"version":"3a6fe6996faa81aac1b9671e3ede384329cffe766eb86d357d90ea5e4b9899be","impliedFormat":99},{"version":"620121398a0868aae1852fef40e3a17837301b7a893953dd40081b4fce66ad0b","impliedFormat":99},{"version":"01d8b9ab9821f80e59270ec682228e98a9f6a7c9bf3d3f64bc9bc57c7853e7c2","impliedFormat":99},{"version":"afe4250b9645928151991fd60790a92571d9251b60be91032152b472d6830ebf","impliedFormat":99},{"version":"68cdca7414470b34b6dba8e14fdbf17393148f84944d31e2adf5ed933f3ec8fa","impliedFormat":99},{"version":"0703fbf0cefe3eaa09abff465ad292b89464a2c80bb8d2bb2942fc3dc08e0285","impliedFormat":99},{"version":"d24fed323d65a8d753ff2d0ea105f5d0788a50b585c1a1334d9bd336b2f378c7","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"52279f70738da349b60a09be1294e3295c7e37189c10deb083ed6b5eb1c86744","impliedFormat":99},{"version":"6fa6950e14d6ca719a29c3ad2fb79d2b03a175af9e3441b3e762cf3b22c92d2b","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"8c4ebbd04aa7093754e9327b69eff245054d78104f637773839228ad13b7c220","impliedFormat":99},{"version":"6569aa8dfff03909c6a32f9bbb2f79dc08d9b8dc6a80e90bac4f19868e9e4071","impliedFormat":99},{"version":"560a9f24b6bcfc74fc2a18f6e8355aff169d15541c6ebd0ff7e05bdaad2f8949","impliedFormat":99},{"version":"aa375ae5339d3a81d468812021abeb49eafd532086482680f04ff539c93669bf","impliedFormat":99},{"version":"370c1b27c11d16c33a1fc96d8304fa7a2d4397cf849c6681e3c45b3818a933d7","impliedFormat":99},{"version":"b3f766182cb2158c59e513af05994dec67564359d841cdcc7dcbcb16aea3974e","impliedFormat":99},{"version":"0a28e7935bed95a6b10bc3b8f54edd00b1d9a539b3606139b1e606baaa2d7f91","signature":"142e20882a4b6555b471993a338c2148f555a3bf566eb99fa35a9cd12a49e10d","impliedFormat":99},{"version":"6862b431e237ea2cfe8a7bf11d52524bb23332d52567cc97bab61894d0a8930a","signature":"e4aecc7e3307c1c9602cb743977073f239781d74998285e3647e5b8884354506","impliedFormat":99},{"version":"207ecf493b69ddca525bbbd8f1d120d99d00be1448ae8c0e690526f24dc182ca","impliedFormat":99},{"version":"af6ac8a19dbd05c34feff97d0eae81194fd0be1358bd2366478e9a574492d332","impliedFormat":99},{"version":"a21c587d34edbe9808b8f4fac207d190f802687b477ef55ee0f494d79a427f31","impliedFormat":99},{"version":"f00b8fc0c970cfd54d4df6047aae216bce4d7a2ceb6610655541a678ac54c57a","impliedFormat":99},{"version":"11fd6a023d60896a902933f64a2c8363102e5276838dbe29aa02a24c2e69fbd1","impliedFormat":99},{"version":"456531f520f624d13438408a7acbefb0ce9ed51a82f27c45d2e87ce8935ad74a","signature":"d5664fad55c16b09f4fbda92412a3c0d99c5e143434a5a82dc0f86d0823014ae","impliedFormat":99},{"version":"9fcb6f8675e6d47c2b11d4be84cc2e417a89b1d6685cabddb200c7864f02d8fd","signature":"6702b6e2142176699f929457aeb350dcd030d1bec9db5e6742deb4cd4adea450","impliedFormat":99},{"version":"68d5f77c1eaa956fc13e03321f94595a1d8bd0916962ce4739217b2222ea98e8","signature":"18d3ba92c8cd5b0dc0413aa76efde4892c1095c865a6590560f4e30679a31afb","impliedFormat":99},{"version":"dd1f9b133995cece4e93a26e92c2ce07d07258ed23b0aeadfc27ad14584e2036","signature":"40471ac4c2b6056bdc7ee09f1f279345d8fcc40b8b326eac38cff2df37ece97a","impliedFormat":99},{"version":"31b87ce80964b6a7347b00e498aed4fdf7ef431ced4f80f25fefd41ec7ae02e2","signature":"c82303f9ddeb0df5c2853ba02e9f1603ad0f01200225e6ee4cb2da53757243c0","impliedFormat":99},{"version":"cedfb4bb6e01ece8f40b6937e25477d1454672dbf3da55f65be80bffc58b1647","signature":"6ca4db25e7bb76bda633a36d700bf10a07535a80df1870c375c8469c820448fc","impliedFormat":99},{"version":"dcb76be82a30343aa5b78ae71510f2fad6b133f4d8e960f3823ec40532b8ec0a","signature":"6bfed074c652e8043dfc926842ebc05f81db6c0c45b521e4bedc9dd8998df736","impliedFormat":99},{"version":"fcfa2e8c963d517cba5a9395e03adb4ada0f87bdb34c3a6250d9e951f25a395e","signature":"21f936f4e0645998eb943a0b51ae386fb8c30dc5c2ec3af0202783eb6bc454ff","impliedFormat":99},{"version":"d755a4f3ee9d11af759ccadccaf157449507a2856ffd8640925bea2c2894c207","impliedFormat":99},{"version":"3f6f5ccff3c78aef6ac4ca7ae2a87f14b967865b7ba6965e626a8f2764530bd0","signature":"5d0df15ae0f6a27fd2e7fe298159f0aa71d478f13b0f223892c4df829155eed7","impliedFormat":99},{"version":"ef12d4f72b608ca2800366154271064ed242b2599cabac491e93e095b2435787","signature":"74ed5f0b9e0083a75afabd22bb2f4a5d6a36437ade54445d83c844c41c82645c","impliedFormat":99},{"version":"8659139408dd0377e787a0ad9f1790fe9b690d5a842f4715d29f5c5cca53a15f","signature":"b0d0bcb161a05bbd651ce24cee5bb80967c1006b3fb1f6f6ef884b4adf4487be","impliedFormat":99},{"version":"d20a1b6925e9c7671bf10a60e5a49bd977d088d539238cdc8c7be301952d7419","signature":"ab8b0faac1a15daaaa6df248b90a65331779c22f6fbd9a869861517278889397","impliedFormat":99},{"version":"721313e1405531faa6e144e78ad3561023150692fbbcc23a4db9c2bda7e2b292","impliedFormat":99},{"version":"838ce90e5445fdbcee4d4d159b0ef02f061c226ece119c2d96f9c31e480a45a2","signature":"aa47cec7289f9c0181d51f2d867f4d5b230715b2433eea83d40e9865b8576de3","impliedFormat":99},{"version":"814676139fb35100c5b789db04f68e5222d9ee7d3113ac05bd87b4d81e2b35a5","signature":"3651947da5192aa0655f8a24ca016b3fb0a65bf24950cf52176d8972c7c32785","impliedFormat":99},{"version":"98da7969aa8079a6625791fdb0806f2cb125ae398bccd84e8cb8a76c454aac93","impliedFormat":99},{"version":"ae05f9cd1c16cfc37310497693db5ae2a35187579d5bf1abeb033fc0cef5d711","impliedFormat":99},{"version":"58afd688a095623679cbe3a816936ee0f1dc41e2024f19be5c067594f61fcd87","impliedFormat":99},{"version":"1c7a7a88866d0a65928620cbbdd9f0a5d4e13a7ea9e629e2f26a96cacded7949","impliedFormat":99},{"version":"8d2e1284733147f944b2454b8013aa961527290720988eef4401a763213c03fa","impliedFormat":99},{"version":"e5592d565d21c0dab2769bdffe96ecc3409ab2711e651d277289adaa3e97fa35","impliedFormat":99},{"version":"ec4108b0012c9c2bed8d9c81e09a7d2f039564f9b0245eb7ad1fbc32120c1d96","impliedFormat":99},{"version":"5e56bf79192b77d47153ce8c8f7a2bd13ebcf2733538451d18e5c1edc8bd0f7b","impliedFormat":99},{"version":"5aba1004e83ebe1769f09111717b1d3438232eb659f8751d22c438ff14a001c7","impliedFormat":99},{"version":"aa617ec460ad30378a5a7a681ec58a29af1636858714f567e3fb603bc761434a","signature":"af8f1e08682835b34de24b6dd5b3e1752fa3c4cc063cd4228ad10cd39285e4ca","impliedFormat":99},{"version":"a8c48ebb6db88876650d0982e15cc4b2881a2db2ab73bddcd36293f3749c8485","signature":"216554c0778a99a5360e127a72acd77e62f33d539880709600dac2e2cb050726","impliedFormat":99},{"version":"aedd44827644e7e6da327f8901c73174c314bc4d9a6bad1225b3ea8a3d03b8df","signature":"e0dfc3c48a5eb78ea39a9ae0d17c472e1aeb4ee213b65f6d3b54f145fafbbc42","impliedFormat":99},{"version":"e16c427745e48f5443d2fd2a5614f5ac27ad0f2ef207a40518ea9b0c2d963643","signature":"90de76e42192a12b90ed03e81de24c2301f3322a6679662b3a076e83b656ffe5","impliedFormat":99},{"version":"b5de98e14061ad8c48ba684252d496320b68feee618790cee2dde43270775fd6","signature":"c401b09e6e783904c3e8506d2151a58d0a79a16073872ebd672164d36728fb68","impliedFormat":99},{"version":"69c4a8e7be454fcac8ad253c0f96c7480e0cd7ae38659e376d34540e9f4c7eb2","signature":"dc0eef4168529383716c6a44e7db88171d8f3fd6bdd0059dce43e8df894d09b0","impliedFormat":99},{"version":"9d29f1cb3321c1fe13d3be8b758945c21f292a78e500ff7ae19e302d37a49b19","signature":"5b988552dc12c81d352bc777010483140356e91c34b72a04f75ec7c9eb1ad2c2","impliedFormat":99},{"version":"d3350d5b338b41d7589929d8e2e5648014b3104b6d0d3c0c33a5e7c3c141bf99","signature":"b46c9f30d3472362277209e77fd247be30f4a4c900408a66391c32ad3f1f21f3","impliedFormat":99},{"version":"eb90fe18be0b3b5b759ff8f055e9ccb19c6a4287c9061c7a4bb9805968e46498","impliedFormat":99},{"version":"3caaeec92411a9e3db28c02f9b1ef146bba83dda78e85071cb254d732c1587b1","signature":"728ffea3a09d231637503933e84d6be8c0b437b735c6ade9e971054129ca9a57","impliedFormat":99},{"version":"055d5c58abf9c069d88cd9f62a426008adc38258390ceba978fa527fffa54441","impliedFormat":99},{"version":"31b4c7d0900484d32d346a6cfe9741cd70c21838cfbee6bb99b76078e8f37bfa","signature":"321d4c987300e79323b2f6bca358bd03f1ea5c1e4f9fa242bcbb233accd0c8b6","impliedFormat":99},{"version":"a1bfa570e7916fe1c2acb990bca48a703ccf95aaeffee105195317ce5865d586","signature":"342fc89a7aea85abb1f9054b2ff8bb25d1fe240564608c1767dfdec1af7743fa","impliedFormat":99},{"version":"ee5ae6f3a15824349a8e75633386a6fde29f6564aadba62eae663a711d4d2070","signature":"e213c05bfecf005d421301d658aa8838cf03913c9d5aa0d112a5b33e5cf4ce4c","impliedFormat":99},{"version":"5340899ff2c8d6ee4e66d32a369a864a09906611b010663b8dde69b10156a366","signature":"989ccea46e1dab200cd921e3ae521005448ef76732fdd7e6b92c3b9a100804c6","impliedFormat":99},{"version":"fdf3bee88fb38f791bdd22903328b22a59db2ab03eb2bafaed006f130afaa8ef","signature":"5bca7d06fb545a2ea8b22930e5c6752e46bd7b87b11677f964df7248d5702e9c","impliedFormat":99},{"version":"fbc705f0519d3ef58d29812d277f27c1464e8bcab7d36c148f12683451d4f7a0","signature":"bdfab105e5c6c095171d0721a84fafab796b301b7f5129158e6e7292b26a4410","impliedFormat":99},{"version":"2bfacf68d3c3c19e1b6f9d33ee9a326a018e211e36540b632d6e66950eebd790","signature":"fa81b026af50def49a4835302b16f9b60884e0d3af4b750d423bfc6326d4c3c5","impliedFormat":99},{"version":"54336e840372a8845ac8b5b116ca5f6a0c9ca9439ae218425321183e4f4a3b2f","signature":"d3f2d733b25bb7dbc29a22679abb5e8bd7235f491aec7c919272b9a824818bfa","impliedFormat":99},{"version":"fd5a7b693597caa5450744ce01a3b1c7938efc078734c662096983559d363165","signature":"c3e9d6bbda8078eb2b97d69ec0d5fd4585aaa7f966581dd273d890c6f8cdc910","impliedFormat":99},{"version":"6651e0e8d0a95ccab2cd3b24df4ea6c33da06499f588938f8758d2d3e822090a","impliedFormat":99},{"version":"6288202884189e6a0e664f6b55e5bc1cf03a4ababb17b89696bcabe189c90da9","signature":"78a602291211992024f85d3301bf7a95f8397ef733966e8369e52a032c6079c2","impliedFormat":99},{"version":"5d5c03cdf03e5607e511e11ef7a0d20cd9a55e5f9a30dce3c3699b1af2bb174c","signature":"969ca29f58ebf2e5684f75b079c1983f5508e904be0adf2b6ae1646251b0bae6","impliedFormat":99},{"version":"25cbd0baaecc32efabbed23767498e3cd2ebfc8f7a222866efe1e580f08f526b","impliedFormat":99},{"version":"74c194a9e7a5a5880e675fa8c22bc7d06e10c97c868117d145734aacfbda7381","impliedFormat":99}],"root":[113,114,[120,136],[145,169]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[156,1],[114,2],[120,3],[121,4],[155,5],[122,6],[129,7],[134,8],[136,9],[133,10],[131,11],[132,12],[130,13],[153,14],[149,15],[150,16],[151,17],[146,18],[145,19],[147,7],[148,20],[152,21],[154,6],[160,22],[158,23],[161,24],[163,25],[165,26],[159,27],[162,28],[164,29],[157,30],[169,31],[167,32],[168,33],[166,34],[123,30],[128,35],[117,36],[116,37],[119,38],[118,39],[144,40],[94,41],[93,42],[95,43],[96,43],[99,44],[101,45],[102,43],[112,46],[103,43],[97,47],[98,48],[104,49],[105,43],[106,43],[92,50],[107,51],[108,52],[110,53],[100,54],[111,54],[82,55],[85,56],[84,57],[90,58],[86,56],[83,55],[87,59],[88,60],[81,61]],"latestChangedDtsFile":"./esm/index.d.ts","version":"5.7.2"}
1
+ {"fileNames":["../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/async-operation-manager.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/delay.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/promise-resolver.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/maybe-promise.d.ts","../../node_modules/.pnpm/@yume-chan+async@4.0.2/node_modules/@yume-chan/async/dts/index.d.ts","../struct/esm/bipedal.d.ts","../struct/esm/readable.d.ts","../struct/esm/field/types.d.ts","../struct/esm/field/serialize.d.ts","../struct/esm/field/factory.d.ts","../struct/esm/field/index.d.ts","../struct/esm/buffer.d.ts","../struct/esm/types.d.ts","../struct/esm/struct.d.ts","../struct/esm/concat.d.ts","../struct/esm/extend.d.ts","../struct/esm/number.d.ts","../struct/esm/string.d.ts","../struct/esm/utils.d.ts","../struct/esm/index.d.ts","../stream-extra/esm/types.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/concat.d.ts","../stream-extra/esm/consumable.d.ts","../stream-extra/esm/maybe-consumable-ns.d.ts","../stream-extra/esm/maybe-consumable.d.ts","../stream-extra/esm/distribution.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/encoding.d.ts","../stream-extra/esm/inspect.d.ts","../stream-extra/esm/pipe-from.d.ts","../stream-extra/esm/push-readable.d.ts","../stream-extra/esm/split-string.d.ts","../stream-extra/esm/struct-deserialize.d.ts","../stream-extra/esm/struct-serialize.d.ts","../stream-extra/esm/task.d.ts","../stream-extra/esm/try-close.d.ts","../stream-extra/esm/wrap-writable.d.ts","../stream-extra/esm/index.d.ts","./src/features.ts","./src/banner.ts","../event/esm/disposable.d.ts","../event/esm/event.d.ts","../event/esm/event-emitter.d.ts","../event/esm/sticky-event-emitter.d.ts","../event/esm/utils.d.ts","../event/esm/index.d.ts","./src/commands/base.ts","./src/commands/framebuffer.ts","./src/commands/power.ts","./src/utils/auto-reset-event.ts","./src/utils/base64.ts","./src/utils/hex.ts","./src/utils/no-op.ts","./src/utils/ref.ts","./src/utils/sequence-equal.ts","./src/utils/index.ts","./src/commands/reverse.ts","./src/commands/subprocess/utils.ts","./src/commands/subprocess/none/spawner.ts","./src/commands/subprocess/none/process.ts","./src/commands/subprocess/pty.ts","./src/commands/subprocess/none/pty.ts","./src/commands/subprocess/none/service.ts","./src/commands/subprocess/none/index.ts","./src/commands/subprocess/shell/shared.ts","./src/commands/subprocess/shell/spawner.ts","./src/commands/subprocess/shell/process.ts","./src/commands/subprocess/shell/pty.ts","./src/commands/subprocess/shell/service.ts","./src/commands/subprocess/shell/index.ts","./src/commands/subprocess/service.ts","./src/commands/subprocess/index.ts","../no-data-view/esm/int16.d.ts","../no-data-view/esm/int32.d.ts","../no-data-view/esm/int64.d.ts","../no-data-view/esm/int8.d.ts","../no-data-view/esm/uint16.d.ts","../no-data-view/esm/uint32.d.ts","../no-data-view/esm/uint64.d.ts","../no-data-view/esm/index.d.ts","./src/commands/sync/response.ts","./src/commands/sync/request.ts","./src/commands/sync/socket.ts","./src/commands/sync/stat.ts","./src/commands/sync/list.ts","./src/commands/sync/pull.ts","./src/commands/sync/push.ts","./src/commands/sync/sync.ts","./src/commands/sync/index.ts","./src/commands/tcpip.ts","./src/commands/index.ts","./src/adb.ts","./src/device-observer.ts","./src/daemon/crypto.ts","./src/daemon/packet.ts","./src/daemon/auth.ts","./src/daemon/device.ts","./src/daemon/socket.ts","./src/daemon/dispatcher.ts","./src/daemon/transport.ts","./src/daemon/index.ts","./src/server/commands/m-dns.ts","./src/server/stream.ts","./src/server/commands/wireless.ts","./src/server/commands/index.ts","./src/server/observer.ts","./src/server/transport.ts","./src/server/client.ts","./src/server/index.ts","./src/index.ts"],"fileIdsList":[[83,120,121,122,173],[121],[128,174],[98,120,174],[129,130,131,139,154,171,172],[129],[98,120,129,138,174],[140,146,152,153],[141,142,144,145],[83,120,141,174],[83,120,143,174],[141,142,144,174],[83,120,140],[83,120],[121,146,152,174],[147,148,149,150,151],[83,120,147,148,174],[83,98,120,143,147,174],[121,148,149,150,174],[98],[163,164,165,166,167,168,169,170],[98,163,164,165,166],[98,120,163,164,165],[98,120,138,163,164,165,166],[98,163],[98,135,162],[98,120,138,174],[98,163,164,165],[120,121,154,165,166,167,168,169,174],[83,98,128,138,176,177],[162],[83,120,177],[83,98,120,162,174,177,180],[176,177,178,179,180,181,182],[98,120],[83,98,120,128,174,177,181],[83,98,120,121,122,174,177,178,181],[83,128],[121,122,138,173,174,175,183,191],[83,120,121,122,128,138,162,174,175,185,187,188,189],[184,186],[190],[138,185,190],[185,188,189,190],[128,138,185,190],[83,98,120,138,190],[83,121,122,174,190],[98,132,133,134,135,136,137],[123,124],[123],[123,124,125,126,127],[124,125],[124],[155,156,157,158,159,160,161],[83,100,101],[83,98,100],[100],[100,106],[83,100,108],[100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[100,104,106],[104,105],[99,100],[99],[98,102],[98,100],[100,101,113],[83,100],[83],[89],[92],[84,85,86,87],[86,87,88],[86],[83,85],[84,85,89,90,91,92,93,94,95,96,97],[89,90],[89,91],[83,85,89],[79,80,81,82]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4942ce52738852aac9e3eb7b2743abd920ea3f62dfc930e8ab49db6672c5d292","impliedFormat":1},{"version":"f232c6de4d9dacf27320453a89e04c29b3bcc7a084ee6184de18a15e4a1a3a1d","impliedFormat":1},{"version":"557a9670c1bb00cdd5eb309ed1e28665fdefe501a4b12eb124dc1bcaa1498328","impliedFormat":1},{"version":"0bbbbb1b5a4f7a77a28dbcd2fc59311affab8cfed9dba97b5d5cf20ae7fbc3f3","impliedFormat":1},{"version":"f9e4b9df247b6b2ec942f9a043801a67c70d94014546d6d2c27d32cb729e470c","impliedFormat":1},{"version":"19872606f722ee6d7e7ae009f5e1d5518695d592de0bc88fbecffb09a190f61c","impliedFormat":99},{"version":"87b3f584a85a5c19bbc331b864710b5a17385c555449f10f1172a2fcdd461e80","impliedFormat":99},{"version":"584c50ac39249bea22701fc35e079d771574d7c7a5974813cac8478e49dd197f","impliedFormat":99},{"version":"f479141fdc9002c67ba83693f4d6b61daecb7af890d5f821dada93894b1c72bf","impliedFormat":99},{"version":"cc3fd3344888f2d160e3ef75189a200fd80e72f4ef4b61455a4474d79477bdeb","impliedFormat":99},{"version":"9ed39feaedfaa6d05973b74694ab07211fff43efb1ca554be3bda00ac86de46d","impliedFormat":99},{"version":"30dd5b92fc2765d755b3fb4c9da73926895a89c5a618018f2f5e259e7860b1f4","impliedFormat":99},{"version":"4d5ac58050d3ee2aa3e5ecb940bc166b71d8cf666b90103a7b2a5a07640adf08","impliedFormat":99},{"version":"7baf146c111bff2cfcd0d3a69bbd4469d9618c9e08fb63eba7a8bf0e4b5f1417","impliedFormat":99},{"version":"2b8f38a2e51f762168a4ab8a06c92a78240f65ddaed431005b1056df859f1457","impliedFormat":99},{"version":"a55b182059f77da2687ed0e8877fd4e24481e883fcaf311f48b8ad98673e3e74","impliedFormat":99},{"version":"e4a185f4c6aa238c812d3c2ba9746d4bf198a31e70e9fae83d107457f0ab10df","impliedFormat":99},{"version":"910abfd85acbc348dd025d4d661db4625d4458de02c7419d948af152c282e512","impliedFormat":99},{"version":"0e7c5f81cf7dc16c999d304b346382a6002366a59278023907ea8c5685800c03","impliedFormat":99},{"version":"ca896dd22a7f1395338a89d9af4199176e8de935628611e299b218183b0f3e8f","affectsGlobalScope":true,"impliedFormat":99},{"version":"27b560836a01152ed34769a9757f2b063c4dd0d7c1e875977c9ecffd50a66098","impliedFormat":99},{"version":"705e82082894a3dc7f6b92b023914e1bf0db10788ddbdf07806002c26a1db3a9","impliedFormat":99},{"version":"93758b16a8798ec0957abf049ef5091497465d024e3b68a2be986ae984b8ebb0","impliedFormat":99},{"version":"233b3ef5dfa40f3459846e94d43c000736582e2ca85d17c496a47e582f79d102","impliedFormat":99},{"version":"256ac5c01fbbd7f17ec5d916b2cf1c4639cef6d5ac2161c82849db6cdc8d0c42","impliedFormat":99},{"version":"3a6fe6996faa81aac1b9671e3ede384329cffe766eb86d357d90ea5e4b9899be","impliedFormat":99},{"version":"620121398a0868aae1852fef40e3a17837301b7a893953dd40081b4fce66ad0b","impliedFormat":99},{"version":"01d8b9ab9821f80e59270ec682228e98a9f6a7c9bf3d3f64bc9bc57c7853e7c2","impliedFormat":99},{"version":"afe4250b9645928151991fd60790a92571d9251b60be91032152b472d6830ebf","impliedFormat":99},{"version":"68cdca7414470b34b6dba8e14fdbf17393148f84944d31e2adf5ed933f3ec8fa","impliedFormat":99},{"version":"0703fbf0cefe3eaa09abff465ad292b89464a2c80bb8d2bb2942fc3dc08e0285","impliedFormat":99},{"version":"d24fed323d65a8d753ff2d0ea105f5d0788a50b585c1a1334d9bd336b2f378c7","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"52279f70738da349b60a09be1294e3295c7e37189c10deb083ed6b5eb1c86744","impliedFormat":99},{"version":"6fa6950e14d6ca719a29c3ad2fb79d2b03a175af9e3441b3e762cf3b22c92d2b","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"b81bc956c1dfc60bfb0513e73aaad2f0331adf19407fdce70379bc7dc02c4e15","impliedFormat":99},{"version":"b96ce25bbc9ee012b65c73821ae59f90a168d1aa62da606948de8bcc561b1fde","impliedFormat":99},{"version":"560a9f24b6bcfc74fc2a18f6e8355aff169d15541c6ebd0ff7e05bdaad2f8949","impliedFormat":99},{"version":"aa375ae5339d3a81d468812021abeb49eafd532086482680f04ff539c93669bf","impliedFormat":99},{"version":"370c1b27c11d16c33a1fc96d8304fa7a2d4397cf849c6681e3c45b3818a933d7","impliedFormat":99},{"version":"b3f766182cb2158c59e513af05994dec67564359d841cdcc7dcbcb16aea3974e","impliedFormat":99},{"version":"0a28e7935bed95a6b10bc3b8f54edd00b1d9a539b3606139b1e606baaa2d7f91","signature":"142e20882a4b6555b471993a338c2148f555a3bf566eb99fa35a9cd12a49e10d","impliedFormat":99},{"version":"f9973ac6f8ee760ec0d83ff1c336df1bb689a01ac1df0dc096340cfcc544c6ec","signature":"e4aecc7e3307c1c9602cb743977073f239781d74998285e3647e5b8884354506","impliedFormat":99},{"version":"207ecf493b69ddca525bbbd8f1d120d99d00be1448ae8c0e690526f24dc182ca","impliedFormat":99},{"version":"af6ac8a19dbd05c34feff97d0eae81194fd0be1358bd2366478e9a574492d332","impliedFormat":99},{"version":"346557f6ca397f60089615ebe31c22e9aaa64ed104db53e72858a5b3c97aab66","impliedFormat":99},{"version":"e3427f1af48d46a0ebf78760ab9417773d00be504683ec0dd1c70e6eef3391ba","impliedFormat":99},{"version":"f00b8fc0c970cfd54d4df6047aae216bce4d7a2ceb6610655541a678ac54c57a","impliedFormat":99},{"version":"6006c2501c5f4bd65c31bad2a9ef2895a3c71d9d65a5ded4a85b1c9514c18041","impliedFormat":99},{"version":"e4f93333addcdb4feb5819ef20a2de5b890e7a9526131e13dce1e99927a495a4","signature":"1a47bba67b1bec83023979d7972c25f286e293902b6f4fd15c6dee8f55eff714","impliedFormat":99},{"version":"9fcb6f8675e6d47c2b11d4be84cc2e417a89b1d6685cabddb200c7864f02d8fd","signature":"09d4077fd1fd4bf639ffacecb0adb3f375ceaf3d3b947d31f30948176f762d76","impliedFormat":99},{"version":"31e3eeea1947f0bd6024dc0dbcd0dd82d09e5e554bebc28ada9effbe5288bce3","signature":"bdb1cfa306afeae93721bab7efe74258761247a644d85a5a10fb739a8606ab14","impliedFormat":99},{"version":"dd1f9b133995cece4e93a26e92c2ce07d07258ed23b0aeadfc27ad14584e2036","signature":"40471ac4c2b6056bdc7ee09f1f279345d8fcc40b8b326eac38cff2df37ece97a","impliedFormat":99},{"version":"31b87ce80964b6a7347b00e498aed4fdf7ef431ced4f80f25fefd41ec7ae02e2","signature":"c82303f9ddeb0df5c2853ba02e9f1603ad0f01200225e6ee4cb2da53757243c0","impliedFormat":99},{"version":"cedfb4bb6e01ece8f40b6937e25477d1454672dbf3da55f65be80bffc58b1647","signature":"6ca4db25e7bb76bda633a36d700bf10a07535a80df1870c375c8469c820448fc","impliedFormat":99},{"version":"dcb76be82a30343aa5b78ae71510f2fad6b133f4d8e960f3823ec40532b8ec0a","signature":"6bfed074c652e8043dfc926842ebc05f81db6c0c45b521e4bedc9dd8998df736","impliedFormat":99},{"version":"d98f338b171a05a50e676908631e564efd45012161a77d9b150df74ade31d262","signature":"61b6076ddd630a3ea556e9836d6b8b46d9b1e30b5d4caa338a7c0162cd148e75","impliedFormat":99},{"version":"fcfa2e8c963d517cba5a9395e03adb4ada0f87bdb34c3a6250d9e951f25a395e","signature":"21f936f4e0645998eb943a0b51ae386fb8c30dc5c2ec3af0202783eb6bc454ff","impliedFormat":99},{"version":"b33ef430acb7969ba485827d1dedd66d315263a57ff29a809cd246ea53d3509e","impliedFormat":99},{"version":"94837a27bac90f8e5f754c160b33b484088df96206728c730cc269affda4b518","signature":"b249d533a9799a13f724da99defffd318b4acf61a5ad421a1d1ea6f60683a5f0","impliedFormat":99},{"version":"2fd597ba8b7ccf7460ebf8d5b3f6755060745f4b490078542b301d220a442de9","signature":"9bf6d10700e6702ac26248138a6bbc9f55d582c488be81a41be3b3eadedc936b","impliedFormat":99},{"version":"e4a8f5f2b4f3921054b4cdd5f287e06c3b4a6b4b02272df43e52852ece50bbff","signature":"71e066dd48d78ac8a6f732f47310cfaf86bf15cd5ace83c449fd1bacc38aa7f5","impliedFormat":99},{"version":"c8520544f8b942a45cce399c0c34259948a2cd40cd73d97ab60e394ee8ecc097","signature":"ed82977a9c942b909b2996783b9bbe90fe91391a51c511dc69d7bb20e94a8437","impliedFormat":99},{"version":"9b0435333d07f47029e10ce424ab0eda1ba01d3e8a1f86ecd1b96dec02fd0ccd","signature":"85c41b79bab9f8c206d16452e577fcbe186ade544cb526364d7bca5ed9574fcb","impliedFormat":99},{"version":"633389f158f37c1fff4cda000fc8713487091621963202d6999a1e52488c4e35","signature":"45124b54526973bc3aafc573815d1a5cebc683b61c48f35aceccfe16aec2aabc","impliedFormat":99},{"version":"09e32f3031a6ccd5713820c2d07f6fb0644e5e6f1ee84b028fe3576859c33808","signature":"132ef8884970a9bed2bd5981db6ab7984f8743e18935d17187f17a40eac526c6","impliedFormat":99},{"version":"8f9027142f8676845857e9381a5942f80b1470233ab99e92baa52000d7293af0","impliedFormat":99},{"version":"8fbf509ddac73db7b2cc6496c8df8f6981ba1653d6c9b5d1b672307834e02aac","signature":"232606d9b702acabb28c11ac3096ec8b164abc7025ab970175b2fb0c7e46fed6","impliedFormat":99},{"version":"41259b00cb0d6377395dab4c7a34c01d5f7a03d7f3181893106541137513cb3a","signature":"e14af15d10a42b4e2eca9a12fd371b9243d5be470d307e94217df9b381d0628f","impliedFormat":99},{"version":"1547f3a886433189f4263fa3313428bd0dd8ddc1d91cbfceeba489aaf220c77e","signature":"32a5dd335b39a6ead7f14c9ada92c4293d1d48fd1e9a504db28aa03571071e45","impliedFormat":99},{"version":"ae286c8f240f2298d19ff7537df73cd1cf41ca349cfaefeed5fa213afc1ebf7f","signature":"36bc119be692c5a87c85d755981faa6c83f7cb24918baed60bbd1d0cf958af41","impliedFormat":99},{"version":"98eb1f78f319b5ddd8c098bd75d0ece818c817c242dc87879830cd4069e19685","signature":"78919e464c45553fe117be5827356fb8733d5dbe97c53da3df32b68d4d986f6d","impliedFormat":99},{"version":"6ed8b6e8060c452971256594b8f874c357a469393296e87bb3c2f1d5b4405bd1","impliedFormat":99},{"version":"f294487d43806aebfac8086267cc312068dff03c9ddb7210e51458dfb29d4e9d","signature":"51b82d4844fc1e4326629d5189ee0306b0e5d8b5986f263572b3056100d411c4","impliedFormat":99},{"version":"07a6c18e08abb31b5e4aa18c945c79195d3f453fc9419e54a75b9491c0a63d5b","impliedFormat":99},{"version":"ae05f9cd1c16cfc37310497693db5ae2a35187579d5bf1abeb033fc0cef5d711","impliedFormat":99},{"version":"58afd688a095623679cbe3a816936ee0f1dc41e2024f19be5c067594f61fcd87","impliedFormat":99},{"version":"1c7a7a88866d0a65928620cbbdd9f0a5d4e13a7ea9e629e2f26a96cacded7949","impliedFormat":99},{"version":"8d2e1284733147f944b2454b8013aa961527290720988eef4401a763213c03fa","impliedFormat":99},{"version":"e5592d565d21c0dab2769bdffe96ecc3409ab2711e651d277289adaa3e97fa35","impliedFormat":99},{"version":"ec4108b0012c9c2bed8d9c81e09a7d2f039564f9b0245eb7ad1fbc32120c1d96","impliedFormat":99},{"version":"5e56bf79192b77d47153ce8c8f7a2bd13ebcf2733538451d18e5c1edc8bd0f7b","impliedFormat":99},{"version":"5aba1004e83ebe1769f09111717b1d3438232eb659f8751d22c438ff14a001c7","impliedFormat":99},{"version":"843533150726a4b369525827497b5fa1e25faf986044d37f31cb85aada046e11","signature":"1d385ac55b2dfea2248fc155c4a96f7209a157612cdc1ee23d86d0377afb5834","impliedFormat":99},{"version":"a8c48ebb6db88876650d0982e15cc4b2881a2db2ab73bddcd36293f3749c8485","signature":"58b7381ddbfd466a014ad08b174df5efbe10193e297ce9da9d30c8d9cfe2c6eb","impliedFormat":99},{"version":"aedd44827644e7e6da327f8901c73174c314bc4d9a6bad1225b3ea8a3d03b8df","signature":"e0dfc3c48a5eb78ea39a9ae0d17c472e1aeb4ee213b65f6d3b54f145fafbbc42","impliedFormat":99},{"version":"e16c427745e48f5443d2fd2a5614f5ac27ad0f2ef207a40518ea9b0c2d963643","signature":"694249bf032f13738866491f2f15fe984381fb6f45d7be8e29936c2c11f085d5","impliedFormat":99},{"version":"3ba6b14c61f17cf81e272d1bca591294596d3879d0a7695bc7f7e34217549e90","signature":"9b4f6757a9bfca5f00390e50f1b08406e73bc8d1591ec8dd9ff606333f2c5761","impliedFormat":99},{"version":"f9f5edd031d0c4a307988dc05f6a3ed8dd9f29473c7fe6908663c1b6ddcc8dbb","signature":"d70c85a5a0ab30712a9ace0ecb31ff2339cfb3fc209f9a3c578f64f11f7fcd44","impliedFormat":99},{"version":"9d29f1cb3321c1fe13d3be8b758945c21f292a78e500ff7ae19e302d37a49b19","signature":"60dffeffb44ee472d799379d115ef4a5ffb380dd48c45d7bf5e0e3a3224d246e","impliedFormat":99},{"version":"35752e1fc5b325db4bdf9abea27c6539f95ef4b9f6ee686c2a2f70c5ec3c5e57","signature":"4876b5ff21c8d3d161d00608f8022ebbd8ecc57555cf8e765bbc42ce13ddc378","impliedFormat":99},{"version":"eb90fe18be0b3b5b759ff8f055e9ccb19c6a4287c9061c7a4bb9805968e46498","impliedFormat":99},{"version":"99cc8bb173aefc8720bd429c3c00584f7a297156216a85f7b52b1940aca4c5fd","signature":"a8e3ca933f3a58c5a3071761a493c760a55305b8f537a47a47a1c7c421ead6df","impliedFormat":99},{"version":"055d5c58abf9c069d88cd9f62a426008adc38258390ceba978fa527fffa54441","impliedFormat":99},{"version":"76518b4c5a66ae5e927a61f812cd82f735fd4dacf7bab9c5974f2bb80eca737e","signature":"b6d7d9de1e7f4c2333c3e51dc3469dc181717f737314750214936ff33a4d7d8e","impliedFormat":99},{"version":"81fcba1492e14db03c6386a8140acebdc133df8b531d14031f64d98294ecd549","signature":"43214bffa2a064162dc1c709f7a7b3d0d8fb5aff2267d092e7291b1b044010c6","impliedFormat":99},{"version":"ee5ae6f3a15824349a8e75633386a6fde29f6564aadba62eae663a711d4d2070","signature":"e213c05bfecf005d421301d658aa8838cf03913c9d5aa0d112a5b33e5cf4ce4c","impliedFormat":99},{"version":"9690abee109892ef5b69fdd3ba44ddbc0c84cdc2e81a3b20d8d5c50c8a0f5ee4","signature":"eea976052efa564c8567a9c2905505854e59baea57831348bb97580ec12581aa","impliedFormat":99},{"version":"fdf3bee88fb38f791bdd22903328b22a59db2ab03eb2bafaed006f130afaa8ef","signature":"5bca7d06fb545a2ea8b22930e5c6752e46bd7b87b11677f964df7248d5702e9c","impliedFormat":99},{"version":"fbc705f0519d3ef58d29812d277f27c1464e8bcab7d36c148f12683451d4f7a0","signature":"bdfab105e5c6c095171d0721a84fafab796b301b7f5129158e6e7292b26a4410","impliedFormat":99},{"version":"61b26e4d7a2103f86577a2f188e4543fe07964bb18cbefbdcd77dca9333d66cf","signature":"816958f37db39f1d6352d585cb545c46093b56be9a9f7b49714b4e7fe75af8e1","impliedFormat":99},{"version":"0a9d978ba5c09dba4fac2921e32d4cefe43b71a91caf8758b5cde0dddc01faf5","signature":"d3f2d733b25bb7dbc29a22679abb5e8bd7235f491aec7c919272b9a824818bfa","impliedFormat":99},{"version":"fd5a7b693597caa5450744ce01a3b1c7938efc078734c662096983559d363165","signature":"c3e9d6bbda8078eb2b97d69ec0d5fd4585aaa7f966581dd273d890c6f8cdc910","impliedFormat":99},{"version":"6651e0e8d0a95ccab2cd3b24df4ea6c33da06499f588938f8758d2d3e822090a","impliedFormat":99},{"version":"c059cc4d1f98369ea4ee5638f2c00af1591e312b522605f9e738a153ac02c288","signature":"c3ceb3c63334d4f5f85a03477ca9b91c2580cfd066094a1b58a9139bbe7eacb9","impliedFormat":99},{"version":"eef3779a42897d320cf24a69ec31b76a7102b50c5bfd6507fcd1212707e7ecec","signature":"00a2ff8223ad17bacbce81edb4fbee1ae7d8430c46cf1a86936642c14a6c0407","impliedFormat":99},{"version":"5d26b658404e457925a89969c5be97b54ef735b097aae9e9a1f53efdfcba9d45","signature":"8a6c4b0864ddb785d14b36fd4fba10d56c5207d2951e2309c5616d80636e33a6","impliedFormat":99},{"version":"d44a0baed7a6e69366547f41056652efc7e8f3ba445696daa62469dc9703e3a9","impliedFormat":99},{"version":"2e91e679327d5c8cec5dcbe4733fdaa7866b57304107a7eff4cb5d15e2b52fe0","signature":"23e57691630d0e1269a2505390eb858a3fb4c1a144d9a32a375d40b9ff9fb127","impliedFormat":99},{"version":"a6a48792ee8e209151f53ec35c6601ad662c287d416e24daa93dd5df6c77be0c","signature":"e790bdb4a5ddb41d954275aeb1984ae35acbbf7ee3056ccb06e190dee4b28358","impliedFormat":99},{"version":"28ff134a0e7d61de19f2caec2a480f30d21394c33a190282ddab89b738a97998","signature":"f6c7758a570559d39699a30603a2036959300104e95fb1a4d7e1a06c5d78f23f","impliedFormat":99},{"version":"9794fd5a3d2183b5a987c6b02cf3732fdf1ed97b6f66d1c858b50a318069b637","impliedFormat":99},{"version":"74c194a9e7a5a5880e675fa8c22bc7d06e10c97c868117d145734aacfbda7381","impliedFormat":99}],"root":[121,122,[129,154],[163,192]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[174,1],[122,2],[129,3],[130,4],[173,5],[131,6],[139,7],[154,8],[146,9],[142,10],[144,11],[145,12],[141,13],[143,14],[153,15],[152,16],[149,17],[150,18],[151,19],[147,20],[148,13],[171,21],[167,22],[168,23],[169,24],[164,25],[163,26],[165,27],[166,28],[170,29],[172,6],[178,30],[176,31],[179,32],[181,33],[183,34],[177,35],[180,36],[182,37],[175,38],[192,39],[190,40],[187,41],[184,42],[186,43],[191,44],[188,45],[185,46],[189,47],[132,38],[138,48],[125,49],[124,50],[128,51],[126,52],[127,53],[162,54],[102,55],[101,56],[103,57],[104,57],[107,58],[109,59],[110,57],[120,60],[111,57],[105,61],[106,62],[112,63],[113,57],[114,57],[100,64],[115,65],[116,66],[118,67],[108,68],[119,68],[84,69],[90,70],[93,71],[94,71],[88,72],[89,73],[87,74],[86,75],[98,76],[95,70],[85,69],[96,77],[92,78],[91,79],[83,80]],"latestChangedDtsFile":"./esm/index.d.ts","version":"5.8.2"}
@@ -1,58 +0,0 @@
1
- import { AdbCommandBase } from "../base.js";
2
- import type { AdbSubprocessProtocol, AdbSubprocessProtocolConstructor } from "./protocols/index.js";
3
- export interface AdbSubprocessOptions {
4
- /**
5
- * A list of `AdbSubprocessProtocolConstructor`s to be used.
6
- *
7
- * Different `AdbSubprocessProtocol` has different capabilities, thus requires specific adaptations.
8
- * Check their documentations for details.
9
- *
10
- * The first protocol whose `isSupported` returns `true` will be used.
11
- * If no `AdbSubprocessProtocol` is supported, an error will be thrown.
12
- *
13
- * @default [AdbSubprocessShellProtocol, AdbSubprocessNoneProtocol]
14
- */
15
- protocols: AdbSubprocessProtocolConstructor[];
16
- }
17
- export interface AdbSubprocessWaitResult {
18
- stdout: string;
19
- stderr: string;
20
- exitCode: number;
21
- }
22
- export declare class AdbSubprocess extends AdbCommandBase {
23
- #private;
24
- /**
25
- * Spawns an executable in PTY mode.
26
- *
27
- * Redirection mode is enough for most simple commands, but PTY mode is required for
28
- * commands that manipulate the terminal, such as `vi` and `less`.
29
- * @param command The command to run. If omitted, the default shell will be spawned.
30
- * @param options The options for creating the `AdbSubprocessProtocol`
31
- * @returns A new `AdbSubprocessProtocol` instance connecting to the spawned process.
32
- */
33
- shell(command?: string | string[], options?: Partial<AdbSubprocessOptions>): Promise<AdbSubprocessProtocol>;
34
- /**
35
- * Spawns an executable and redirect the standard input/output stream.
36
- *
37
- * Redirection mode is enough for most simple commands, but PTY mode is required for
38
- * commands that manipulate the terminal, such as `vi` and `less`.
39
- * @param command The command to run, or an array of strings containing both command and args.
40
- * @param options The options for creating the `AdbSubprocessProtocol`
41
- * @returns A new `AdbSubprocessProtocol` instance connecting to the spawned process.
42
- */
43
- spawn(command: string | string[], options?: Partial<AdbSubprocessOptions>): Promise<AdbSubprocessProtocol>;
44
- /**
45
- * Spawns a new process, waits until it exits, and returns the entire output.
46
- * @param command The command to run
47
- * @param options The options for creating the `AdbSubprocessProtocol`
48
- * @returns The entire output of the command
49
- */
50
- spawnAndWait(command: string | string[], options?: Partial<AdbSubprocessOptions>): Promise<AdbSubprocessWaitResult>;
51
- /**
52
- * Spawns a new process, waits until it exits, and returns the entire output.
53
- * @param command The command to run
54
- * @returns The entire output of the command
55
- */
56
- spawnAndWaitLegacy(command: string | string[]): Promise<string>;
57
- }
58
- //# sourceMappingURL=command.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"command.d.ts","sourceRoot":"","sources":["../../../src/commands/subprocess/command.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE5C,OAAO,KAAK,EACR,qBAAqB,EACrB,gCAAgC,EACnC,MAAM,sBAAsB,CAAC;AAM9B,MAAM,WAAW,oBAAoB;IACjC;;;;;;;;;;OAUG;IACH,SAAS,EAAE,gCAAgC,EAAE,CAAC;CACjD;AAMD,MAAM,WAAW,uBAAuB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CACpB;AAED,qBAAa,aAAc,SAAQ,cAAc;;IA8B7C;;;;;;;;OAQG;IACH,KAAK,CACD,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,EAC3B,OAAO,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GACxC,OAAO,CAAC,qBAAqB,CAAC;IAIjC;;;;;;;;OAQG;IACH,KAAK,CACD,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GACxC,OAAO,CAAC,qBAAqB,CAAC;IAIjC;;;;;OAKG;IACG,YAAY,CACd,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GACxC,OAAO,CAAC,uBAAuB,CAAC;IAoBnC;;;;OAIG;IACG,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC;CAMxE"}
@@ -1,89 +0,0 @@
1
- import { ConcatStringStream, TextDecoderStream } from "@yume-chan/stream-extra";
2
- import { AdbCommandBase } from "../base.js";
3
- import { AdbSubprocessNoneProtocol, AdbSubprocessShellProtocol, } from "./protocols/index.js";
4
- const DEFAULT_OPTIONS = {
5
- protocols: [AdbSubprocessShellProtocol, AdbSubprocessNoneProtocol],
6
- };
7
- export class AdbSubprocess extends AdbCommandBase {
8
- async #createProtocol(mode, command, options) {
9
- const { protocols } = { ...DEFAULT_OPTIONS, ...options };
10
- let Constructor;
11
- for (const item of protocols) {
12
- // It's async so can't use `Array#find`
13
- if (await item.isSupported(this.adb)) {
14
- Constructor = item;
15
- break;
16
- }
17
- }
18
- if (!Constructor) {
19
- throw new Error("No specified protocol is supported by the device");
20
- }
21
- if (Array.isArray(command)) {
22
- command = command.join(" ");
23
- }
24
- else if (command === undefined) {
25
- // spawn the default shell
26
- command = "";
27
- }
28
- return await Constructor[mode](this.adb, command);
29
- }
30
- /**
31
- * Spawns an executable in PTY mode.
32
- *
33
- * Redirection mode is enough for most simple commands, but PTY mode is required for
34
- * commands that manipulate the terminal, such as `vi` and `less`.
35
- * @param command The command to run. If omitted, the default shell will be spawned.
36
- * @param options The options for creating the `AdbSubprocessProtocol`
37
- * @returns A new `AdbSubprocessProtocol` instance connecting to the spawned process.
38
- */
39
- shell(command, options) {
40
- return this.#createProtocol("pty", command, options);
41
- }
42
- /**
43
- * Spawns an executable and redirect the standard input/output stream.
44
- *
45
- * Redirection mode is enough for most simple commands, but PTY mode is required for
46
- * commands that manipulate the terminal, such as `vi` and `less`.
47
- * @param command The command to run, or an array of strings containing both command and args.
48
- * @param options The options for creating the `AdbSubprocessProtocol`
49
- * @returns A new `AdbSubprocessProtocol` instance connecting to the spawned process.
50
- */
51
- spawn(command, options) {
52
- return this.#createProtocol("raw", command, options);
53
- }
54
- /**
55
- * Spawns a new process, waits until it exits, and returns the entire output.
56
- * @param command The command to run
57
- * @param options The options for creating the `AdbSubprocessProtocol`
58
- * @returns The entire output of the command
59
- */
60
- async spawnAndWait(command, options) {
61
- const process = await this.spawn(command, options);
62
- const [stdout, stderr, exitCode] = await Promise.all([
63
- process.stdout
64
- .pipeThrough(new TextDecoderStream())
65
- .pipeThrough(new ConcatStringStream()),
66
- process.stderr
67
- .pipeThrough(new TextDecoderStream())
68
- .pipeThrough(new ConcatStringStream()),
69
- process.exit,
70
- ]);
71
- return {
72
- stdout,
73
- stderr,
74
- exitCode,
75
- };
76
- }
77
- /**
78
- * Spawns a new process, waits until it exits, and returns the entire output.
79
- * @param command The command to run
80
- * @returns The entire output of the command
81
- */
82
- async spawnAndWaitLegacy(command) {
83
- const { stdout } = await this.spawnAndWait(command, {
84
- protocols: [AdbSubprocessNoneProtocol],
85
- });
86
- return stdout;
87
- }
88
- }
89
- //# sourceMappingURL=command.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"command.js","sourceRoot":"","sources":["../../../src/commands/subprocess/command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEhF,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAM5C,OAAO,EACH,yBAAyB,EACzB,0BAA0B,GAC7B,MAAM,sBAAsB,CAAC;AAiB9B,MAAM,eAAe,GAAyB;IAC1C,SAAS,EAAE,CAAC,0BAA0B,EAAE,yBAAyB,CAAC;CACrE,CAAC;AAQF,MAAM,OAAO,aAAc,SAAQ,cAAc;IAC7C,KAAK,CAAC,eAAe,CACjB,IAAmB,EACnB,OAA2B,EAC3B,OAAuC;QAEvC,MAAM,EAAE,SAAS,EAAE,GAAG,EAAE,GAAG,eAAe,EAAE,GAAG,OAAO,EAAE,CAAC;QAEzD,IAAI,WAAyD,CAAC;QAC9D,KAAK,MAAM,IAAI,IAAI,SAAS,EAAE,CAAC;YAC3B,uCAAuC;YACvC,IAAI,MAAM,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;gBACnC,WAAW,GAAG,IAAI,CAAC;gBACnB,MAAM;YACV,CAAC;QACL,CAAC;QAED,IAAI,CAAC,WAAW,EAAE,CAAC;YACf,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;QACxE,CAAC;QAED,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;YACzB,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;aAAM,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;YAC/B,0BAA0B;YAC1B,OAAO,GAAG,EAAE,CAAC;QACjB,CAAC;QACD,OAAO,MAAM,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;IAED;;;;;;;;OAQG;IACH,KAAK,CACD,OAA2B,EAC3B,OAAuC;QAEvC,OAAO,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;IAED;;;;;;;;OAQG;IACH,KAAK,CACD,OAA0B,EAC1B,OAAuC;QAEvC,OAAO,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,YAAY,CACd,OAA0B,EAC1B,OAAuC;QAEvC,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAEnD,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC;YACjD,OAAO,CAAC,MAAM;iBACT,WAAW,CAAC,IAAI,iBAAiB,EAAE,CAAC;iBACpC,WAAW,CAAC,IAAI,kBAAkB,EAAE,CAAC;YAC1C,OAAO,CAAC,MAAM;iBACT,WAAW,CAAC,IAAI,iBAAiB,EAAE,CAAC;iBACpC,WAAW,CAAC,IAAI,kBAAkB,EAAE,CAAC;YAC1C,OAAO,CAAC,IAAI;SACf,CAAC,CAAC;QAEH,OAAO;YACH,MAAM;YACN,MAAM;YACN,QAAQ;SACX,CAAC;IACN,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,kBAAkB,CAAC,OAA0B;QAC/C,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE;YAChD,SAAS,EAAE,CAAC,yBAAyB,CAAC;SACzC,CAAC,CAAC;QACH,OAAO,MAAM,CAAC;IAClB,CAAC;CACJ"}
@@ -1,4 +0,0 @@
1
- export * from "./none.js";
2
- export * from "./shell.js";
3
- export * from "./types.js";
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/commands/subprocess/protocols/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
@@ -1,4 +0,0 @@
1
- export * from "./none.js";
2
- export * from "./shell.js";
3
- export * from "./types.js";
4
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/commands/subprocess/protocols/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
@@ -1,32 +0,0 @@
1
- import type { MaybeConsumable, WritableStream } from "@yume-chan/stream-extra";
2
- import { ReadableStream } from "@yume-chan/stream-extra";
3
- import type { Adb, AdbSocket } from "../../../adb.js";
4
- import type { AdbSubprocessProtocol } from "./types.js";
5
- /**
6
- * The legacy shell
7
- *
8
- * Features:
9
- * * `stderr`: No
10
- * * `exit` exit code: No
11
- * * `resize`: No
12
- */
13
- export declare class AdbSubprocessNoneProtocol implements AdbSubprocessProtocol {
14
- #private;
15
- static isSupported(): boolean;
16
- static pty(adb: Adb, command: string): Promise<AdbSubprocessNoneProtocol>;
17
- static raw(adb: Adb, command: string): Promise<AdbSubprocessNoneProtocol>;
18
- get stdin(): WritableStream<MaybeConsumable<Uint8Array>>;
19
- /**
20
- * Legacy shell mixes stdout and stderr.
21
- */
22
- get stdout(): ReadableStream<Uint8Array>;
23
- /**
24
- * `stderr` will always be empty.
25
- */
26
- get stderr(): ReadableStream<Uint8Array>;
27
- get exit(): Promise<number>;
28
- constructor(socket: AdbSocket);
29
- resize(): void;
30
- kill(): Promise<void>;
31
- }
32
- //# sourceMappingURL=none.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"none.d.ts","sourceRoot":"","sources":["../../../../src/commands/subprocess/protocols/none.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAEzD,OAAO,KAAK,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAEtD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExD;;;;;;;GAOG;AACH,qBAAa,yBAA0B,YAAW,qBAAqB;;IACnE,MAAM,CAAC,WAAW;WAIL,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM;WAM7B,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM;IAW1C,IAAI,KAAK,IAAI,cAAc,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,CAEvD;IAED;;OAEG;IACH,IAAI,MAAM,IAAI,cAAc,CAAC,UAAU,CAAC,CAEvC;IAGD;;OAEG;IACH,IAAI,MAAM,IAAI,cAAc,CAAC,UAAU,CAAC,CAEvC;IAGD,IAAI,IAAI,oBAEP;gBAEW,MAAM,EAAE,SAAS;IAY7B,MAAM;IAIA,IAAI;CAGb"}
@@ -1,61 +0,0 @@
1
- import { ReadableStream } from "@yume-chan/stream-extra";
2
- /**
3
- * The legacy shell
4
- *
5
- * Features:
6
- * * `stderr`: No
7
- * * `exit` exit code: No
8
- * * `resize`: No
9
- */
10
- export class AdbSubprocessNoneProtocol {
11
- static isSupported() {
12
- return true;
13
- }
14
- static async pty(adb, command) {
15
- return new AdbSubprocessNoneProtocol(await adb.createSocket(`shell:${command}`));
16
- }
17
- static async raw(adb, command) {
18
- // `shell,raw:${command}` also triggers raw mode,
19
- // But is not supported on Android version <7.
20
- return new AdbSubprocessNoneProtocol(await adb.createSocket(`exec:${command}`));
21
- }
22
- #socket;
23
- // Legacy shell forwards all data to stdin.
24
- get stdin() {
25
- return this.#socket.writable;
26
- }
27
- /**
28
- * Legacy shell mixes stdout and stderr.
29
- */
30
- get stdout() {
31
- return this.#socket.readable;
32
- }
33
- #stderr;
34
- /**
35
- * `stderr` will always be empty.
36
- */
37
- get stderr() {
38
- return this.#stderr;
39
- }
40
- #exit;
41
- get exit() {
42
- return this.#exit;
43
- }
44
- constructor(socket) {
45
- this.#socket = socket;
46
- this.#stderr = new ReadableStream({
47
- start: async (controller) => {
48
- await this.#socket.closed;
49
- controller.close();
50
- },
51
- });
52
- this.#exit = socket.closed.then(() => 0);
53
- }
54
- resize() {
55
- // Not supported, but don't throw.
56
- }
57
- async kill() {
58
- await this.#socket.close();
59
- }
60
- }
61
- //# sourceMappingURL=none.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"none.js","sourceRoot":"","sources":["../../../../src/commands/subprocess/protocols/none.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAMzD;;;;;;;GAOG;AACH,MAAM,OAAO,yBAAyB;IAClC,MAAM,CAAC,WAAW;QACd,OAAO,IAAI,CAAC;IAChB,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,GAAQ,EAAE,OAAe;QACtC,OAAO,IAAI,yBAAyB,CAChC,MAAM,GAAG,CAAC,YAAY,CAAC,SAAS,OAAO,EAAE,CAAC,CAC7C,CAAC;IACN,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,GAAQ,EAAE,OAAe;QACtC,iDAAiD;QACjD,8CAA8C;QAC9C,OAAO,IAAI,yBAAyB,CAChC,MAAM,GAAG,CAAC,YAAY,CAAC,QAAQ,OAAO,EAAE,CAAC,CAC5C,CAAC;IACN,CAAC;IAEQ,OAAO,CAAY;IAE5B,2CAA2C;IAC3C,IAAI,KAAK;QACL,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACjC,CAAC;IAED;;OAEG;IACH,IAAI,MAAM;QACN,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACjC,CAAC;IAED,OAAO,CAA6B;IACpC;;OAEG;IACH,IAAI,MAAM;QACN,OAAO,IAAI,CAAC,OAAO,CAAC;IACxB,CAAC;IAED,KAAK,CAAkB;IACvB,IAAI,IAAI;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC;IACtB,CAAC;IAED,YAAY,MAAiB;QACzB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;QAEtB,IAAI,CAAC,OAAO,GAAG,IAAI,cAAc,CAAC;YAC9B,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,EAAE;gBACxB,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;gBAC1B,UAAU,CAAC,KAAK,EAAE,CAAC;YACvB,CAAC;SACJ,CAAC,CAAC;QACH,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;IAC7C,CAAC;IAED,MAAM;QACF,kCAAkC;IACtC,CAAC;IAED,KAAK,CAAC,IAAI;QACN,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;IAC/B,CAAC;CACJ"}
@@ -1,42 +0,0 @@
1
- import type { ReadableStream } from "@yume-chan/stream-extra";
2
- import { MaybeConsumable, WritableStream } from "@yume-chan/stream-extra";
3
- import type { Adb, AdbSocket } from "../../../adb.js";
4
- import type { AdbSubprocessProtocol } from "./types.js";
5
- export declare const AdbShellProtocolId: {
6
- readonly Stdin: 0;
7
- readonly Stdout: 1;
8
- readonly Stderr: 2;
9
- readonly Exit: 3;
10
- readonly CloseStdin: 4;
11
- readonly WindowSizeChange: 5;
12
- };
13
- export type AdbShellProtocolId = (typeof AdbShellProtocolId)[keyof typeof AdbShellProtocolId];
14
- export declare const AdbShellProtocolPacket: import("@yume-chan/struct").Struct<{
15
- id: import("@yume-chan/struct").Field<AdbShellProtocolId, never, never>;
16
- data: import("@yume-chan/struct").Field<Uint8Array<ArrayBufferLike>, never, never>;
17
- }, {}, import("@yume-chan/struct").FieldsType<{
18
- id: import("@yume-chan/struct").Field<AdbShellProtocolId, never, never>;
19
- data: import("@yume-chan/struct").Field<Uint8Array<ArrayBufferLike>, never, never>;
20
- }>>;
21
- /**
22
- * Shell v2 a.k.a Shell Protocol
23
- *
24
- * Features:
25
- * * `stderr`: Yes
26
- * * `exit` exit code: Yes
27
- * * `resize`: Yes
28
- */
29
- export declare class AdbSubprocessShellProtocol implements AdbSubprocessProtocol {
30
- #private;
31
- static isSupported(adb: Adb): boolean;
32
- static pty(adb: Adb, command: string): Promise<AdbSubprocessShellProtocol>;
33
- static raw(adb: Adb, command: string): Promise<AdbSubprocessShellProtocol>;
34
- get stdin(): WritableStream<MaybeConsumable<Uint8Array<ArrayBufferLike>>>;
35
- get stdout(): ReadableStream<Uint8Array<ArrayBufferLike>>;
36
- get stderr(): ReadableStream<Uint8Array<ArrayBufferLike>>;
37
- get exit(): Promise<number>;
38
- constructor(socket: AdbSocket);
39
- resize(rows: number, cols: number): Promise<void>;
40
- kill(): import("@yume-chan/async").MaybePromiseLike<void>;
41
- }
42
- //# sourceMappingURL=shell.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"shell.d.ts","sourceRoot":"","sources":["../../../../src/commands/subprocess/protocols/shell.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAER,cAAc,EAEjB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACH,eAAe,EAGf,cAAc,EACjB,MAAM,yBAAyB,CAAC;AAIjC,OAAO,KAAK,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAItD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExD,eAAO,MAAM,kBAAkB;;;;;;;CAOrB,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAC1B,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,OAAO,kBAAkB,CAAC,CAAC;AAGjE,eAAO,MAAM,sBAAsB;;;;;;GAMlC,CAAC;AAIF;;;;;;;GAOG;AACH,qBAAa,0BAA2B,YAAW,qBAAqB;;IACpE,MAAM,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG;WAId,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM;WAO7B,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM;IAU1C,IAAI,KAAK,iEAER;IAGD,IAAI,MAAM,gDAET;IAGD,IAAI,MAAM,gDAET;IAGD,IAAI,IAAI,oBAEP;gBAEW,MAAM,EAAE,SAAS;IA8DvB,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAYvC,IAAI;CAGP"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"shell.js","sourceRoot":"","sources":["../../../../src/commands/subprocess/protocols/shell.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAMnD,OAAO,EACH,eAAe,EACf,kBAAkB,EAClB,uBAAuB,EACvB,cAAc,GACjB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,mBAAmB,CAAC;AAG5D,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAIrD,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAC9B,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,CAAC;IACT,IAAI,EAAE,CAAC;IACP,UAAU,EAAE,CAAC;IACb,gBAAgB,EAAE,CAAC;CACb,CAAC;AAKX,iDAAiD;AACjD,MAAM,CAAC,MAAM,sBAAsB,GAAG,MAAM,CACxC;IACI,EAAE,EAAE,EAAE,EAAsB;IAC5B,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC;CACpB,EACD,EAAE,YAAY,EAAE,IAAI,EAAE,CACzB,CAAC;AAIF;;;;;;;GAOG;AACH,MAAM,OAAO,0BAA0B;IACnC,MAAM,CAAC,WAAW,CAAC,GAAQ;QACvB,OAAO,GAAG,CAAC,aAAa,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;IACjD,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,GAAQ,EAAE,OAAe;QACtC,iFAAiF;QACjF,OAAO,IAAI,0BAA0B,CACjC,MAAM,GAAG,CAAC,YAAY,CAAC,gBAAgB,OAAO,EAAE,CAAC,CACpD,CAAC;IACN,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,GAAQ,EAAE,OAAe;QACtC,OAAO,IAAI,0BAA0B,CACjC,MAAM,GAAG,CAAC,YAAY,CAAC,gBAAgB,OAAO,EAAE,CAAC,CACpD,CAAC;IACN,CAAC;IAEQ,OAAO,CAAY;IAC5B,OAAO,CAA2D;IAElE,MAAM,CAA8C;IACpD,IAAI,KAAK;QACL,OAAO,IAAI,CAAC,MAAM,CAAC;IACvB,CAAC;IAED,OAAO,CAA6B;IACpC,IAAI,MAAM;QACN,OAAO,IAAI,CAAC,OAAO,CAAC;IACxB,CAAC;IAED,OAAO,CAA6B;IACpC,IAAI,MAAM;QACN,OAAO,IAAI,CAAC,OAAO,CAAC;IACxB,CAAC;IAEQ,KAAK,GAAG,IAAI,eAAe,EAAU,CAAC;IAC/C,IAAI,IAAI;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC;IAC9B,CAAC;IAED,YAAY,MAAiB;QACzB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;QAEtB,IAAI,gBAA2D,CAAC;QAChE,IAAI,gBAA2D,CAAC;QAChE,IAAI,CAAC,OAAO,GAAG,IAAI,kBAAkB,CAAa,CAAC,UAAU,EAAE,EAAE;YAC7D,gBAAgB,GAAG,UAAU,CAAC;QAClC,CAAC,CAAC,CAAC;QACH,IAAI,CAAC,OAAO,GAAG,IAAI,kBAAkB,CAAa,CAAC,UAAU,EAAE,EAAE;YAC7D,gBAAgB,GAAG,UAAU,CAAC;QAClC,CAAC,CAAC,CAAC;QAEH,MAAM,CAAC,QAAQ;aACV,WAAW,CAAC,IAAI,uBAAuB,CAAC,sBAAsB,CAAC,CAAC;aAChE,MAAM,CACH,IAAI,cAAc,CAAyB;YACvC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;gBACnB,QAAQ,KAAK,CAAC,EAAE,EAAE,CAAC;oBACf,KAAK,kBAAkB,CAAC,IAAI;wBACxB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAE,CAAC,CAAC;wBACnC,MAAM;oBACV,KAAK,kBAAkB,CAAC,MAAM;wBAC1B,MAAM,gBAAgB,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;wBAC3C,MAAM;oBACV,KAAK,kBAAkB,CAAC,MAAM;wBAC1B,MAAM,gBAAgB,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;wBAC3C,MAAM;gBACd,CAAC;YACL,CAAC;SACJ,CAAC,CACL;aACA,IAAI,CACD,GAAG,EAAE;YACD,gBAAgB,CAAC,KAAK,EAAE,CAAC;YACzB,gBAAgB,CAAC,KAAK,EAAE,CAAC;YACzB,wDAAwD;YACxD,IAAI,CAAC,KAAK,CAAC,MAAM,CACb,IAAI,KAAK,CAAC,mCAAmC,CAAC,CACjD,CAAC;QACN,CAAC,EACD,CAAC,CAAC,EAAE,EAAE;YACF,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAC1B,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAC1B,wDAAwD;YACxD,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QACzB,CAAC,CACJ,CAAC;QAEN,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;QAEjD,IAAI,CAAC,MAAM,GAAG,IAAI,eAAe,CAAC,cAAc,CAAa;YACzD,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;gBACnB,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CACpB,sBAAsB,CAAC,SAAS,CAAC;oBAC7B,EAAE,EAAE,kBAAkB,CAAC,KAAK;oBAC5B,IAAI,EAAE,KAAK;iBACd,CAAC,CACL,CAAC;YACN,CAAC;SACJ,CAAC,CAAC;IACP,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,IAAY,EAAE,IAAY;QACnC,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CACpB,sBAAsB,CAAC,SAAS,CAAC;YAC7B,EAAE,EAAE,kBAAkB,CAAC,gBAAgB;YACvC,oEAAoE;YACpE,8DAA8D;YAC9D,8EAA8E;YAC9E,IAAI,EAAE,UAAU,CAAC,GAAG,IAAI,IAAI,IAAI,QAAQ,CAAC;SAC5C,CAAC,CACL,CAAC;IACN,CAAC;IAED,IAAI;QACA,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;IAChC,CAAC;CACJ"}
@@ -1,49 +0,0 @@
1
- import type { MaybePromiseLike } from "@yume-chan/async";
2
- import type { MaybeConsumable, ReadableStream, WritableStream } from "@yume-chan/stream-extra";
3
- import type { Adb, AdbSocket } from "../../../adb.js";
4
- export interface AdbSubprocessProtocol {
5
- /**
6
- * A WritableStream that writes to the `stdin` stream.
7
- */
8
- readonly stdin: WritableStream<MaybeConsumable<Uint8Array>>;
9
- /**
10
- * The `stdout` stream of the process.
11
- */
12
- readonly stdout: ReadableStream<Uint8Array>;
13
- /**
14
- * The `stderr` stream of the process.
15
- *
16
- * Note: Some `AdbSubprocessProtocol` doesn't separate `stdout` and `stderr`,
17
- * All output will be sent to `stdout`.
18
- */
19
- readonly stderr: ReadableStream<Uint8Array>;
20
- /**
21
- * A `Promise` that resolves to the exit code of the process.
22
- *
23
- * Note: Some `AdbSubprocessProtocol` doesn't support exit code,
24
- * They will always resolve it with `0`.
25
- */
26
- readonly exit: Promise<number>;
27
- /**
28
- * Resizes the current shell.
29
- *
30
- * Some `AdbSubprocessProtocol`s may not support resizing
31
- * and will ignore calls to this method.
32
- */
33
- resize(rows: number, cols: number): MaybePromiseLike<void>;
34
- /**
35
- * Kills the current process.
36
- */
37
- kill(): MaybePromiseLike<void>;
38
- }
39
- export interface AdbSubprocessProtocolConstructor {
40
- /** Returns `true` if the `adb` instance supports this shell */
41
- isSupported(adb: Adb): MaybePromiseLike<boolean>;
42
- /** Spawns an executable in PTY (interactive) mode. */
43
- pty(adb: Adb, command: string): MaybePromiseLike<AdbSubprocessProtocol>;
44
- /** Spawns an executable and pipe the output. */
45
- raw(adb: Adb, command: string): MaybePromiseLike<AdbSubprocessProtocol>;
46
- /** Creates a new `AdbShell` by attaching to an exist `AdbSocket` */
47
- new (socket: AdbSocket): AdbSubprocessProtocol;
48
- }
49
- //# sourceMappingURL=types.d.ts.map