@yume-chan/adb 0.0.20 → 0.0.21

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 (115) hide show
  1. package/CHANGELOG.json +24 -0
  2. package/CHANGELOG.md +12 -1
  3. package/README.md +5 -3
  4. package/esm/adb.d.ts +4 -1
  5. package/esm/adb.d.ts.map +1 -1
  6. package/esm/adb.js +21 -11
  7. package/esm/adb.js.map +1 -1
  8. package/esm/banner.d.ts.map +1 -1
  9. package/esm/banner.js +1 -1
  10. package/esm/banner.js.map +1 -1
  11. package/esm/commands/base.d.ts.map +1 -1
  12. package/esm/commands/base.js.map +1 -1
  13. package/esm/commands/framebuffer.d.ts +9 -0
  14. package/esm/commands/framebuffer.d.ts.map +1 -1
  15. package/esm/commands/framebuffer.js +27 -3
  16. package/esm/commands/framebuffer.js.map +1 -1
  17. package/esm/commands/power.d.ts.map +1 -1
  18. package/esm/commands/power.js.map +1 -1
  19. package/esm/commands/reverse.d.ts.map +1 -1
  20. package/esm/commands/reverse.js.map +1 -1
  21. package/esm/commands/subprocess/command.d.ts +1 -1
  22. package/esm/commands/subprocess/command.d.ts.map +1 -1
  23. package/esm/commands/subprocess/command.js +15 -13
  24. package/esm/commands/subprocess/command.js.map +1 -1
  25. package/esm/commands/subprocess/protocols/none.d.ts.map +1 -1
  26. package/esm/commands/subprocess/protocols/none.js.map +1 -1
  27. package/esm/commands/subprocess/protocols/shell.d.ts.map +1 -1
  28. package/esm/commands/subprocess/protocols/shell.js +15 -15
  29. package/esm/commands/subprocess/protocols/shell.js.map +1 -1
  30. package/esm/commands/sync/push.js +1 -1
  31. package/esm/commands/sync/push.js.map +1 -1
  32. package/esm/commands/sync/request.js +1 -1
  33. package/esm/commands/sync/request.js.map +1 -1
  34. package/esm/commands/sync/response.d.ts +2 -0
  35. package/esm/commands/sync/response.d.ts.map +1 -1
  36. package/esm/commands/sync/response.js +4 -2
  37. package/esm/commands/sync/response.js.map +1 -1
  38. package/esm/commands/sync/socket.d.ts +0 -1
  39. package/esm/commands/sync/socket.d.ts.map +1 -1
  40. package/esm/commands/sync/socket.js +3 -3
  41. package/esm/commands/sync/socket.js.map +1 -1
  42. package/esm/commands/sync/stat.js +2 -2
  43. package/esm/commands/sync/stat.js.map +1 -1
  44. package/esm/commands/sync/sync.d.ts +15 -0
  45. package/esm/commands/sync/sync.d.ts.map +1 -1
  46. package/esm/commands/sync/sync.js +17 -2
  47. package/esm/commands/sync/sync.js.map +1 -1
  48. package/esm/commands/tcpip.d.ts.map +1 -1
  49. package/esm/commands/tcpip.js.map +1 -1
  50. package/esm/daemon/auth.d.ts +11 -9
  51. package/esm/daemon/auth.d.ts.map +1 -1
  52. package/esm/daemon/auth.js +21 -12
  53. package/esm/daemon/auth.js.map +1 -1
  54. package/esm/daemon/crypto.js +2 -2
  55. package/esm/daemon/crypto.js.map +1 -1
  56. package/esm/daemon/dispatcher.d.ts +4 -4
  57. package/esm/daemon/dispatcher.d.ts.map +1 -1
  58. package/esm/daemon/dispatcher.js +16 -16
  59. package/esm/daemon/dispatcher.js.map +1 -1
  60. package/esm/daemon/packet.js +1 -1
  61. package/esm/daemon/packet.js.map +1 -1
  62. package/esm/daemon/socket.d.ts +0 -2
  63. package/esm/daemon/socket.d.ts.map +1 -1
  64. package/esm/daemon/socket.js +12 -8
  65. package/esm/daemon/socket.js.map +1 -1
  66. package/esm/daemon/transport.d.ts +10 -2
  67. package/esm/daemon/transport.d.ts.map +1 -1
  68. package/esm/daemon/transport.js +5 -3
  69. package/esm/daemon/transport.js.map +1 -1
  70. package/esm/features.js +1 -1
  71. package/esm/features.js.map +1 -1
  72. package/esm/server/client.d.ts.map +1 -1
  73. package/esm/server/client.js +1 -2
  74. package/esm/server/client.js.map +1 -1
  75. package/esm/server/transport.d.ts.map +1 -1
  76. package/esm/server/transport.js.map +1 -1
  77. package/esm/utils/auto-reset-event.d.ts.map +1 -1
  78. package/esm/utils/auto-reset-event.js.map +1 -1
  79. package/esm/utils/conditional-variable.d.ts.map +1 -1
  80. package/esm/utils/conditional-variable.js.map +1 -1
  81. package/package.json +12 -13
  82. package/src/adb.ts +42 -30
  83. package/src/banner.ts +7 -7
  84. package/src/commands/base.ts +1 -1
  85. package/src/commands/framebuffer.ts +31 -3
  86. package/src/commands/power.ts +9 -9
  87. package/src/commands/reverse.ts +13 -13
  88. package/src/commands/subprocess/command.ts +24 -25
  89. package/src/commands/subprocess/protocols/none.ts +12 -12
  90. package/src/commands/subprocess/protocols/shell.ts +35 -35
  91. package/src/commands/sync/list.ts +5 -5
  92. package/src/commands/sync/pull.ts +4 -4
  93. package/src/commands/sync/push.ts +6 -6
  94. package/src/commands/sync/request.ts +3 -3
  95. package/src/commands/sync/response.ts +7 -5
  96. package/src/commands/sync/socket.ts +14 -14
  97. package/src/commands/sync/stat.ts +5 -5
  98. package/src/commands/sync/sync.ts +32 -17
  99. package/src/commands/tcpip.ts +2 -2
  100. package/src/daemon/auth.ts +49 -30
  101. package/src/daemon/crypto.ts +9 -9
  102. package/src/daemon/dispatcher.ts +40 -39
  103. package/src/daemon/packet.ts +1 -1
  104. package/src/daemon/socket.ts +34 -30
  105. package/src/daemon/transport.ts +32 -20
  106. package/src/server/client.ts +38 -41
  107. package/src/server/transport.ts +13 -13
  108. package/src/utils/auto-reset-event.ts +4 -4
  109. package/src/utils/base64.ts +5 -5
  110. package/src/utils/conditional-variable.ts +4 -4
  111. package/tsconfig.build.tsbuildinfo +1 -1
  112. package/esm/daemon/connection.d.ts +0 -11
  113. package/esm/daemon/connection.d.ts.map +0 -1
  114. package/esm/daemon/connection.js +0 -2
  115. package/esm/daemon/connection.js.map +0 -1
@@ -39,12 +39,12 @@ export interface AdbServerConnectionOptions {
39
39
 
40
40
  export interface AdbServerConnection {
41
41
  connect(
42
- options?: AdbServerConnectionOptions
42
+ options?: AdbServerConnectionOptions,
43
43
  ): ValueOrPromise<ReadableWritablePair<Uint8Array, Uint8Array>>;
44
44
 
45
45
  addReverseTunnel(
46
46
  handler: AdbIncomingSocketHandler,
47
- address?: string
47
+ address?: string,
48
48
  ): ValueOrPromise<string>;
49
49
 
50
50
  removeReverseTunnel(address: string): ValueOrPromise<void>;
@@ -74,18 +74,18 @@ export interface AdbServerDevice {
74
74
  }
75
75
 
76
76
  export class AdbServerClient {
77
- public static readonly VERSION = 41;
77
+ static readonly VERSION = 41;
78
78
 
79
- public readonly connection: AdbServerConnection;
79
+ readonly connection: AdbServerConnection;
80
80
 
81
- public constructor(connection: AdbServerConnection) {
81
+ constructor(connection: AdbServerConnection) {
82
82
  this.connection = connection;
83
83
  }
84
84
 
85
- public static readString(stream: ExactReadable): string;
86
- public static readString(stream: AsyncExactReadable): PromiseLike<string>;
87
- public static readString(
88
- stream: ExactReadable | AsyncExactReadable
85
+ static readString(stream: ExactReadable): string;
86
+ static readString(stream: AsyncExactReadable): PromiseLike<string>;
87
+ static readString(
88
+ stream: ExactReadable | AsyncExactReadable,
89
89
  ): string | PromiseLike<string> {
90
90
  return SyncPromise.try(() => stream.readExactly(4))
91
91
  .then((buffer) => {
@@ -98,9 +98,9 @@ export class AdbServerClient {
98
98
  .valueOrPromise();
99
99
  }
100
100
 
101
- public static async writeString(
101
+ static async writeString(
102
102
  writer: WritableStreamDefaultWriter<Uint8Array>,
103
- value: string
103
+ value: string,
104
104
  ): Promise<void> {
105
105
  const valueBuffer = encodeUtf8(value);
106
106
  const buffer = new Uint8Array(4 + valueBuffer.length);
@@ -109,8 +109,8 @@ export class AdbServerClient {
109
109
  await writer.write(buffer);
110
110
  }
111
111
 
112
- public static async readOkay(
113
- stream: ExactReadable | AsyncExactReadable
112
+ static async readOkay(
113
+ stream: ExactReadable | AsyncExactReadable,
114
114
  ): Promise<void> {
115
115
  const response = decodeUtf8(await stream.readExactly(4));
116
116
  if (response === "OKAY") {
@@ -125,9 +125,9 @@ export class AdbServerClient {
125
125
  throw new Error(`Unexpected response: ${response}`);
126
126
  }
127
127
 
128
- public async connect(
128
+ async connect(
129
129
  request: string,
130
- options?: AdbServerConnectionOptions
130
+ options?: AdbServerConnectionOptions,
131
131
  ): Promise<ReadableWritablePair<Uint8Array, Uint8Array>> {
132
132
  const connection = await this.connection.connect(options);
133
133
 
@@ -141,7 +141,7 @@ export class AdbServerClient {
141
141
  // so the `catch` block can close the connection.
142
142
  await raceSignal(
143
143
  () => AdbServerClient.readOkay(readable),
144
- options?.signal
144
+ options?.signal,
145
145
  );
146
146
 
147
147
  writer.releaseLock();
@@ -156,7 +156,7 @@ export class AdbServerClient {
156
156
  }
157
157
  }
158
158
 
159
- public async getVersion(): Promise<number> {
159
+ async getVersion(): Promise<number> {
160
160
  const connection = await this.connect("host:version");
161
161
  const readable = new BufferedReadableStream(connection.readable);
162
162
  try {
@@ -169,22 +169,22 @@ export class AdbServerClient {
169
169
  }
170
170
  }
171
171
 
172
- public async validateVersion() {
172
+ async validateVersion() {
173
173
  const version = await this.getVersion();
174
174
  if (version !== AdbServerClient.VERSION) {
175
175
  throw new Error(
176
- `adb server version (${version}) doesn't match this client (${AdbServerClient.VERSION})`
176
+ `adb server version (${version}) doesn't match this client (${AdbServerClient.VERSION})`,
177
177
  );
178
178
  }
179
179
  }
180
180
 
181
- public async killServer(): Promise<void> {
181
+ async killServer(): Promise<void> {
182
182
  const connection = await this.connect("host:kill");
183
183
  connection.writable.close().catch(NOOP);
184
184
  connection.readable.cancel().catch(NOOP);
185
185
  }
186
186
 
187
- public async getServerFeatures(): Promise<AdbFeature[]> {
187
+ async getServerFeatures(): Promise<AdbFeature[]> {
188
188
  const connection = await this.connect("host:host-features");
189
189
  const readable = new BufferedReadableStream(connection.readable);
190
190
  try {
@@ -196,7 +196,7 @@ export class AdbServerClient {
196
196
  }
197
197
  }
198
198
 
199
- public async getDevices(): Promise<AdbServerDevice[]> {
199
+ async getDevices(): Promise<AdbServerDevice[]> {
200
200
  const connection = await this.connect("host:devices-l");
201
201
  const readable = new BufferedReadableStream(connection.readable);
202
202
  try {
@@ -253,10 +253,7 @@ export class AdbServerClient {
253
253
  }
254
254
  }
255
255
 
256
- public formatDeviceService(
257
- device: AdbServerDeviceSelector,
258
- command: string
259
- ) {
256
+ formatDeviceService(device: AdbServerDeviceSelector, command: string) {
260
257
  if (!device) {
261
258
  return `host:${command}`;
262
259
  }
@@ -282,8 +279,8 @@ export class AdbServerClient {
282
279
  * @param device The device selector
283
280
  * @returns The transport ID of the selected device, and the features supported by the device.
284
281
  */
285
- public async getDeviceFeatures(
286
- device: AdbServerDeviceSelector
282
+ async getDeviceFeatures(
283
+ device: AdbServerDeviceSelector,
287
284
  ): Promise<{ transportId: bigint; features: AdbFeature[] }> {
288
285
  // Usually the client sends a device command using `connectDevice`,
289
286
  // so the command got forwarded and handled by ADB daemon.
@@ -309,9 +306,9 @@ export class AdbServerClient {
309
306
  * @param service The service to forward
310
307
  * @returns An `AdbServerSocket` that can be used to communicate with the service
311
308
  */
312
- public async connectDevice(
309
+ async connectDevice(
313
310
  device: AdbServerDeviceSelector,
314
- service: string
311
+ service: string,
315
312
  ): Promise<AdbServerSocket> {
316
313
  await this.validateVersion();
317
314
 
@@ -342,7 +339,7 @@ export class AdbServerClient {
342
339
  const dataView = new DataView(
343
340
  array.buffer,
344
341
  array.byteOffset,
345
- array.byteLength
342
+ array.byteLength,
346
343
  );
347
344
  transportId = BigIntFieldType.Uint64.getter(dataView, 0, true);
348
345
  }
@@ -359,8 +356,8 @@ export class AdbServerClient {
359
356
  const wrapReadable = duplex.wrapReadable(readable.release());
360
357
  const wrapWritable = duplex.createWritable(
361
358
  new WrapWritableStream(connection.writable).bePipedThroughFrom(
362
- new UnwrapConsumableStream()
363
- )
359
+ new UnwrapConsumableStream(),
360
+ ),
364
361
  );
365
362
 
366
363
  return {
@@ -386,10 +383,10 @@ export class AdbServerClient {
386
383
  * @param options The options
387
384
  * @returns A promise that resolves when the condition is met.
388
385
  */
389
- public async waitFor(
386
+ async waitFor(
390
387
  device: AdbServerDeviceSelector,
391
388
  state: "device" | "disconnect",
392
- options?: AdbServerConnectionOptions
389
+ options?: AdbServerConnectionOptions,
393
390
  ): Promise<void> {
394
391
  let type: string;
395
392
  if (!device) {
@@ -410,7 +407,7 @@ export class AdbServerClient {
410
407
  // might not be available yet.
411
408
  const service = this.formatDeviceService(
412
409
  device,
413
- `wait-for-${type}-${state}`
410
+ `wait-for-${type}-${state}`,
414
411
  );
415
412
 
416
413
  // `connect` resolves when server writes `OKAY`,
@@ -418,28 +415,28 @@ export class AdbServerClient {
418
415
  await this.connect(service, options);
419
416
  }
420
417
 
421
- public async createTransport(
422
- device: AdbServerDeviceSelector
418
+ async createTransport(
419
+ device: AdbServerDeviceSelector,
423
420
  ): Promise<AdbServerTransport> {
424
421
  const { transportId, features } = await this.getDeviceFeatures(device);
425
422
 
426
423
  const devices = await this.getDevices();
427
424
  const info = devices.find(
428
- (device) => device.transportId === transportId
425
+ (device) => device.transportId === transportId,
429
426
  );
430
427
 
431
428
  const banner = new AdbBanner(
432
429
  info?.product,
433
430
  info?.model,
434
431
  info?.device,
435
- features
432
+ features,
436
433
  );
437
434
 
438
435
  return new AdbServerTransport(
439
436
  this,
440
437
  info?.serial ?? "",
441
438
  banner,
442
- transportId
439
+ transportId,
443
440
  );
444
441
  }
445
442
  }
@@ -14,23 +14,23 @@ import type { AdbServerClient } from "./client.js";
14
14
  export class AdbServerTransport implements AdbTransport {
15
15
  #client: AdbServerClient;
16
16
 
17
- public readonly serial: string;
17
+ readonly serial: string;
18
18
 
19
- public readonly transportId: bigint;
19
+ readonly transportId: bigint;
20
20
 
21
- public readonly maxPayloadSize: number = 1 * 1024 * 1024;
21
+ readonly maxPayloadSize: number = 1 * 1024 * 1024;
22
22
 
23
- public readonly banner: AdbBanner;
23
+ readonly banner: AdbBanner;
24
24
 
25
25
  #closed = new PromiseResolver<void>();
26
26
  #waitAbortController = new AbortController();
27
- public readonly disconnected: Promise<void>;
27
+ readonly disconnected: Promise<void>;
28
28
 
29
- public constructor(
29
+ constructor(
30
30
  client: AdbServerClient,
31
31
  serial: string,
32
32
  banner: AdbBanner,
33
- transportId: bigint
33
+ transportId: bigint,
34
34
  ) {
35
35
  this.#client = client;
36
36
  this.serial = serial;
@@ -46,27 +46,27 @@ export class AdbServerTransport implements AdbTransport {
46
46
  ]);
47
47
  }
48
48
 
49
- public async connect(service: string): Promise<AdbSocket> {
49
+ async connect(service: string): Promise<AdbSocket> {
50
50
  return await this.#client.connectDevice(
51
51
  {
52
52
  transportId: this.transportId,
53
53
  },
54
- service
54
+ service,
55
55
  );
56
56
  }
57
57
 
58
- public async addReverseTunnel(
58
+ async addReverseTunnel(
59
59
  handler: AdbIncomingSocketHandler,
60
- address?: string
60
+ address?: string,
61
61
  ): Promise<string> {
62
62
  return await this.#client.connection.addReverseTunnel(handler, address);
63
63
  }
64
64
 
65
- public async removeReverseTunnel(address: string): Promise<void> {
65
+ async removeReverseTunnel(address: string): Promise<void> {
66
66
  await this.#client.connection.removeReverseTunnel(address);
67
67
  }
68
68
 
69
- public async clearReverseTunnels(): Promise<void> {
69
+ async clearReverseTunnels(): Promise<void> {
70
70
  await this.#client.connection.clearReverseTunnels();
71
71
  }
72
72
 
@@ -5,11 +5,11 @@ export class AutoResetEvent implements Disposable {
5
5
  #set: boolean;
6
6
  readonly #queue: PromiseResolver<void>[] = [];
7
7
 
8
- public constructor(initialSet = false) {
8
+ constructor(initialSet = false) {
9
9
  this.#set = initialSet;
10
10
  }
11
11
 
12
- public wait(): Promise<void> {
12
+ wait(): Promise<void> {
13
13
  if (!this.#set) {
14
14
  this.#set = true;
15
15
 
@@ -23,7 +23,7 @@ export class AutoResetEvent implements Disposable {
23
23
  return resolver.promise;
24
24
  }
25
25
 
26
- public notifyOne() {
26
+ notifyOne() {
27
27
  if (this.#queue.length !== 0) {
28
28
  this.#queue.pop()!.resolve();
29
29
  } else {
@@ -31,7 +31,7 @@ export class AutoResetEvent implements Disposable {
31
31
  }
32
32
  }
33
33
 
34
- public dispose() {
34
+ dispose() {
35
35
  for (const item of this.#queue) {
36
36
  item.reject(new Error("The AutoResetEvent has been disposed"));
37
37
  }
@@ -26,7 +26,7 @@ addRange("/", "/");
26
26
  * @returns Length of the output in bytes
27
27
  */
28
28
  export function calculateBase64EncodedLength(
29
- inputLength: number
29
+ inputLength: number,
30
30
  ): [outputLength: number, paddingLength: number] {
31
31
  const remainder = inputLength % 3;
32
32
  const paddingLength = remainder !== 0 ? 3 - remainder : 0;
@@ -54,10 +54,10 @@ export function encodeBase64(input: Uint8Array): Uint8Array;
54
54
  export function encodeBase64(input: Uint8Array, output: Uint8Array): number;
55
55
  export function encodeBase64(
56
56
  input: Uint8Array,
57
- output?: Uint8Array
57
+ output?: Uint8Array,
58
58
  ): Uint8Array | number {
59
59
  const [outputLength, paddingLength] = calculateBase64EncodedLength(
60
- input.length
60
+ input.length,
61
61
  );
62
62
 
63
63
  if (!output) {
@@ -123,7 +123,7 @@ export function encodeBase64(
123
123
  function encodeForward(
124
124
  input: Uint8Array,
125
125
  output: Uint8Array,
126
- paddingLength: number
126
+ paddingLength: number,
127
127
  ) {
128
128
  let inputIndex = 0;
129
129
  let outputIndex = 0;
@@ -200,7 +200,7 @@ function encodeForward(
200
200
  function encodeBackward(
201
201
  input: Uint8Array,
202
202
  output: Uint8Array,
203
- paddingLength: number
203
+ paddingLength: number,
204
204
  ) {
205
205
  let inputIndex = input.length - 1;
206
206
  let outputIndex = output.length - 1;
@@ -10,7 +10,7 @@ export class ConditionalVariable implements Disposable {
10
10
  #locked = false;
11
11
  readonly #queue: WaitEntry[] = [];
12
12
 
13
- public wait(condition: () => boolean): Promise<void> {
13
+ wait(condition: () => boolean): Promise<void> {
14
14
  if (!this.#locked) {
15
15
  this.#locked = true;
16
16
  if (this.#queue.length === 0 && condition()) {
@@ -23,7 +23,7 @@ export class ConditionalVariable implements Disposable {
23
23
  return resolver.promise;
24
24
  }
25
25
 
26
- public notifyOne() {
26
+ notifyOne() {
27
27
  const entry = this.#queue.shift();
28
28
  if (entry) {
29
29
  if (entry.condition()) {
@@ -34,10 +34,10 @@ export class ConditionalVariable implements Disposable {
34
34
  }
35
35
  }
36
36
 
37
- public dispose(): void {
37
+ dispose(): void {
38
38
  for (const item of this.#queue) {
39
39
  item.resolver.reject(
40
- new Error("The ConditionalVariable has been disposed")
40
+ new Error("The ConditionalVariable has been disposed"),
41
41
  );
42
42
  }
43
43
  this.#queue.length = 0;
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.2/node_modules/tslib/tslib.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.2/node_modules/tslib/modules/index.d.ts","../struct/esm/basic/options.d.ts","../struct/esm/basic/struct-value.d.ts","../struct/esm/basic/field-value.d.ts","../struct/esm/utils.d.ts","../struct/esm/basic/stream.d.ts","../struct/esm/basic/definition.d.ts","../struct/esm/basic/index.d.ts","../struct/esm/types/bigint.d.ts","../struct/esm/types/buffer/base.d.ts","../struct/esm/types/buffer/fixed-length.d.ts","../struct/esm/types/buffer/variable-length.d.ts","../struct/esm/types/buffer/index.d.ts","../struct/esm/types/number.d.ts","../struct/esm/types/index.d.ts","../struct/esm/struct.d.ts","../struct/esm/sync-promise.d.ts","../struct/esm/index.d.ts","../../common/temp/node_modules/.pnpm/web-streams-polyfill@4.0.0-beta.3/node_modules/web-streams-polyfill/types/ponyfill.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/consumable.d.ts","../stream-extra/esm/decode-utf8.d.ts","../stream-extra/esm/distribution.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/gather-string.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/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","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/async-operation-manager.d.ts","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/delay.d.ts","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/promise-resolver.d.ts","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/index.d.ts","./src/utils/auto-reset-event.ts","./src/utils/base64.ts","./src/utils/conditional-variable.ts","./src/utils/hex.ts","./src/utils/no-op.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","./src/commands/sync/request.ts","./src/commands/sync/response.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","../dataview-bigint-polyfill/esm/fallback.d.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","../../common/temp/node_modules/.pnpm/tslib@2.5.0/node_modules/tslib/tslib.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"0734467ebd328b91af92eff2af9c97f6079bc4736c4992f8a5e47123680cf21b","impliedFormat":99},{"version":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"ffe3c0472cf0ad60edbf5037319135c645bd92e7acbf403d72101df3598258e0","impliedFormat":99},{"version":"64ebe41006e87ea8b5e9b3acf048018b5226c4b08c6575526a76f6801143bf90","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"2414e378fb9e46fe36d8a0f4fb7af126441078299c03a46096713b03a5f6571d","impliedFormat":99},{"version":"1ed47fe653ec1bbcbd8ed241873938642755f2917f9e9a2e78daef11519f0745","impliedFormat":99},{"version":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"2f50c2700b3397c9961c1e14b903d0ff1120e064755603740cecdcdf3b05d20f","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"8fd12fa3eb9c1cc067d1fed98d649971da96a5ed161dafc6fba4a5b7a9ceb7fe","impliedFormat":99},{"version":"15cc3dd9a039f8ba1628d1e27cdf4b45582fc387a4241ebb65eff1786b89f522","impliedFormat":99},{"version":"01056fd3092681e2f1c0cb0e1fec91ac081b5bb758551494fca1c1d27f06c2b4","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"a387648b45b3d02c838a213809bf7aa3a3c6e009b0cfedbbb98e7863219fd0b4","impliedFormat":99},{"version":"fd9a69c8fa10f578b0d5961441fb2778fb34cd41d20e5714aa49f983f1cdd52f","impliedFormat":99},{"version":"7e9aecc83330a5c15b10f8995dfce2e1004f9bbdd0c4a9df18e8483facd76703","impliedFormat":99},{"version":"280386331ba739ec12261d42474f90f2d98214f9ac87ecad4be0585507acd937","impliedFormat":99},{"version":"316d7bdfb430fa119cbd460e01ffbf726321a5e54575c22b70e8ff56241d849a","impliedFormat":99},{"version":"d5a938d49803873c6de2daa0e81fa87ab44eee5259df765345932a28ecfb64fc","impliedFormat":99},{"version":"6642b7e23799bfb100805fbde097790a6484bd375c2c75dc18da086639f8b7e5","impliedFormat":99},{"version":"f4be8f5f1fbf13b24da4b2141e124c000750454d5168544c27352631e4edccd9","impliedFormat":99},{"version":"15268f168504a8daad6197637bf91c0399fb26861e720805051dd0e8c2f2ebd1","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"662cafdf363d512eff0d6c525c711684dba726ac5f4d09f473110a05c8ecd8e5","impliedFormat":99},{"version":"86c62ba4f3279d13647e2901b8819c9b32f4eb9645d50d02b4d60e5521f693db","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"057f28f1e4c53bfdc397099ee4bf873ef32f26a938a135881b19bf10f968a805","impliedFormat":99},{"version":"d00e790b0d3738482ddb18bb446210b41019520dd32438570d6bc533f7b95239","impliedFormat":99},{"version":"c4e45ef293b9b228aad0d51acb0ef0397dad22a3454b3f6f751b6de1ac9e11e0","impliedFormat":99},{"version":"9e33e135a12a5761c92a4ef0057e1d24310ada6f0758a13223036efc22b9e745","impliedFormat":99},{"version":"879ff2595a9455aec7a5bac3640eeae75f27f99cbdc4a7529a1f6f25d0a2a83f","signature":"020962899646e5e2efc7100d1a0c443be16800cef6f2cada68c20fe8de585d43","impliedFormat":99},{"version":"59ba543de704fb7a3d671cd289c5b592bb47e5159dc3cc378cec6554926ae970","signature":"48b65aae077c0a25bef9982871b488aebd4161768ee8bb88b9cc0d4736e15644","impliedFormat":99},{"version":"7565a3e1f88b68c438331d8ece71540f9fb5a11a8a0480b5c262c701142c5048","impliedFormat":99},{"version":"af6ac8a19dbd05c34feff97d0eae81194fd0be1358bd2366478e9a574492d332","impliedFormat":99},{"version":"a21c587d34edbe9808b8f4fac207d190f802687b477ef55ee0f494d79a427f31","impliedFormat":99},{"version":"f00b8fc0c970cfd54d4df6047aae216bce4d7a2ceb6610655541a678ac54c57a","impliedFormat":99},{"version":"11fd6a023d60896a902933f64a2c8363102e5276838dbe29aa02a24c2e69fbd1","impliedFormat":99},{"version":"f96dcb9f7b021e35549a451a7064c528604bd5f6e7ef5701773e392863ce5d4d","signature":"d5664fad55c16b09f4fbda92412a3c0d99c5e143434a5a82dc0f86d0823014ae","impliedFormat":99},{"version":"c1881ce78d96801fc4f1caea4b09d3406fdf5f6d9971bd205e14218290d2561f","signature":"ac5d1242b5e0af60effdcbdbd2ea3f1a1cfbc2877eb4ad8e6df0e596ff3ce047","impliedFormat":99},{"version":"e57edceaf4048b81af1d3382514cbe1df2b17ced8bbefd264a437af31e7f1f44","signature":"18d3ba92c8cd5b0dc0413aa76efde4892c1095c865a6590560f4e30679a31afb","impliedFormat":99},{"version":"894c22bde12ec873bb8740375ba23ccadfae8f4092be61f67582a1f10664a5cb","impliedFormat":1},{"version":"f50339597aa63b1971e8c45fab408449677a31643b93dfc2987dc3ff14ec319f","impliedFormat":1},{"version":"fce5c825b26ac9820114464634b0432a82b3f0f68a8a2f86dd0d187fae3a33d2","impliedFormat":1},{"version":"48c5c4761e707c5d2b36852cb06a251ee1a72863b45a25f277894c67e765ee67","impliedFormat":1},{"version":"d561b02a4cb51067082413c8de0dc07ea2ec28fd9076c37b0b6c3bac50c3ac89","signature":"40471ac4c2b6056bdc7ee09f1f279345d8fcc40b8b326eac38cff2df37ece97a","impliedFormat":99},{"version":"572aa02f4117bec7af6031d8dfb79a64b41b82c39972c2fd3e5aa38212f6dacb","signature":"c82303f9ddeb0df5c2853ba02e9f1603ad0f01200225e6ee4cb2da53757243c0","impliedFormat":99},{"version":"36376a8c661864ac716cd7254ae819510171534534b7f6482428ec7172231211","signature":"8923bb9bac8a80132bbf1510facaa96198df1de6df035b77b5a81b681c5fba70","impliedFormat":99},{"version":"0b78b55de56014b05bb0a48b699475ad79e613f7a4a90d8d2ef813450de7bd5d","signature":"390d45fe0b15286282624b4646ac3267a601bf47154e2809cc9c12762d13223b","impliedFormat":99},{"version":"1b632bf33bec6cb2eecbdae41ca0690ac6d3a14b440d3619dd11d7b6de405116","signature":"6bfed074c652e8043dfc926842ebc05f81db6c0c45b521e4bedc9dd8998df736","impliedFormat":99},{"version":"9fca5e617704571d97a09c9d6bafd115ecfdf54e9b719b263bd77cc7820e1e7a","impliedFormat":99},{"version":"901bf222c1e1e8b070168f457a9be1c31e72af52178d37b30ce51bc9c34ed1d8","signature":"22a65c300fb8989d8c282e949c1219ba70ec4a7542136629d75072b0c191539f","impliedFormat":99},{"version":"e4ef04db477aca82d5ed8613bf964b06a594984fcabd718c30eb97406613fcb0","signature":"8b686124fd8d7102d8c2293311e0b9b2d48ddae7d88fe0688841b3f440eaef55","impliedFormat":99},{"version":"4ce4666a26e8e5e61d73c44e7053dee4a311f1bfd99fac79598e843341879aa6","signature":"3662463ad80a475e0e31f0d909c04036e9dc5e4b63141396db38795f6ec20edb","impliedFormat":99},{"version":"38a1610ae7fbb968766c9c5749218615e45d04e886f6fc46b7029adfd8987706","signature":"eb5828be18865d34ea3049afc3679267661a290b9858e2cd2866387c70b981ef","impliedFormat":99},{"version":"721313e1405531faa6e144e78ad3561023150692fbbcc23a4db9c2bda7e2b292","impliedFormat":99},{"version":"aeec0e24078093c0281478804e91eece75bbe2e14b40b0146d0ef72ec7fec2c9","signature":"0bfafbea0db16cf312eb181f9153d840640fc36e47c0e61b30ddc16e5d23d432","impliedFormat":99},{"version":"c31237b9372be26a11a958da8a2ddb789c62c2ec5427009300c9e545ee81b153","signature":"3651947da5192aa0655f8a24ca016b3fb0a65bf24950cf52176d8972c7c32785","impliedFormat":99},{"version":"98da7969aa8079a6625791fdb0806f2cb125ae398bccd84e8cb8a76c454aac93","impliedFormat":99},{"version":"2cfac366d2f7224b7b41992896e4ce9d2876dc1a7c3b7ce086c6e172cbcf6602","signature":"ea4d0669fa41158a8ae4dfbcb9f690f3177edd29c83a4cf01b74a4db24c5dcc8","impliedFormat":99},{"version":"f3113fc6fb54a0bb4150e6af77fba3207646a2b79e0e1b8dc79f1ccebfa69f3f","signature":"57cf1e4b805c24f3d61c1e753a4aac48061e932e90e2afdf38ddbc5111886410","impliedFormat":99},{"version":"0f61d2fff484e2060b8af089c56021d63abe7d29c38aa2f731149643cb2b6c1f","signature":"372b22fc038ee96b5a52f6b998d37c0c9c0cb8300b858e3f368b61388359ae23","impliedFormat":99},{"version":"9e5ba6e73adef154e48b81dd7f0ff41c3b1ee331cfe64fdcca36b7322995d47e","signature":"8fc0d6a1e97a1fcd37ebdb72241e4608652a69e1a963ca662d1429750cf04f73","impliedFormat":99},{"version":"ba11b07a1006673d957f7457ba75339e59279d4a06fd566c3d20548e532a0b62","signature":"8f70945f7ea3ad857863b6035d2ac1fdf1b6793c6a2ca74ce89508f82be4dc29","impliedFormat":99},{"version":"cd3cf37cb7a21073f85b145eca8244dbad1cc72909d6e5bd55e350f6b529de97","signature":"85e159ffc1676583a00e26cdae8f40fa3139e32c89aa7ecbc725e120a8db1418","impliedFormat":99},{"version":"a8008655411c1c8a3ec1d221760192d28670e034f87c021613ac79d15853ef73","signature":"3a908670fbb5fa07652421362e908b98e3abb854dc07b036dcdf800b919901b4","impliedFormat":99},{"version":"73fcdc059b745b49b1a6d9423b2932fd687bf4bd0344546aa9d50db42430712f","signature":"1df671bf418dd913e42d9d9d848541e3c6e5989e5db362cb12ddd84305f34b17","impliedFormat":99},{"version":"eb90fe18be0b3b5b759ff8f055e9ccb19c6a4287c9061c7a4bb9805968e46498","impliedFormat":99},{"version":"7519d3f2c8e52a1d87e85b992d110ebb75178f003f147f7e302d6a565aac0b0d","signature":"d73ce6a51a42271a54f27cd4bbc0a1aa9897882a83f35c3ce1a611578305bc11","impliedFormat":99},{"version":"055d5c58abf9c069d88cd9f62a426008adc38258390ceba978fa527fffa54441","impliedFormat":99},{"version":"2510c6c814d3062f16f8e82e6166e4a661985859eb3b03d3528f6917490ab6ba","signature":"5a78fbd15c9e2a1d0603252fabff17addd55597ca9e25440132c26fb2ce117f3","impliedFormat":99},{"version":"135245a0c940a2c51b6c291eda3b51298a43c8ebb5c8f52adc8875b8f19cb898","impliedFormat":99},{"version":"b2d84b5e53545d345003d956b5c510cf72f60b8f0d98ec3d9c045b364d4ef956","signature":"8ec40582c992093bdc404d6d4d21459d31cc4cbd761f738979ba31f2d054cedd","impliedFormat":99},{"version":"be9809c4000e6b55accf8e2fd943b0284706a2c6a797445d659ced6682ae8558","signature":"78ab431a811184547b55f5f0af6f2d2859f5e638b2665bccb5efee2f2d947325","impliedFormat":99},{"version":"54baa821ed5f3d9aa8f50e9cd3c22fef8f202ba3864261c38dd894066ddd1d22","signature":"72e9620fda3c1d56bb3f1cfcf7e3052732c61fc57b042b128b7bf41d6d8c199f","impliedFormat":99},{"version":"2ecca4372e0d23fb473d4e9a933c31dc36c9f222c4a170668d50a1923edd81bc","signature":"2943c4190d96fc3a3ec84acbd89b8467572facc49459a9727cbd48acb5581c0e","impliedFormat":99},{"version":"ee08071832915da873860825f2797d28bc7deb83b655265002d10dcb22d3146b","signature":"451dbe724a8951a9ea92fb490d984e06a0de072532b7c74ad48d8dc0dd918bd1","impliedFormat":99},{"version":"8b4b965fbcdc79ce6cdf5e7f6e9256483bd2fb9e7e16e04b5ce894821ac0d8ba","signature":"afc3207b86111de2fda0fce7951a0beccffbb34eee0cbed88298413ad8d45494","impliedFormat":99},{"version":"0297998c59583a56c7784251d4ec5c04a105c8ae0a6206c616b560cde51fc99a","signature":"208884a7e414e5b3c04c02677a6ed4c50e2d386f0eb851f637860ced9366ab17","impliedFormat":99},{"version":"6651e0e8d0a95ccab2cd3b24df4ea6c33da06499f588938f8758d2d3e822090a","impliedFormat":99},{"version":"f64aa5b802853ca1c5730986455814800123de49dd6303788d11fa194aa7b40b","signature":"2dfefff9f09ec7460c4ca86b1c5e5d2cfa0fe9a2a1613916b74a6a4949ea26cc","impliedFormat":99},{"version":"9d2a9aba6143909cf5e6f1c07eccb31599fd1301ed8af8eb054e8fb536cd6efd","signature":"74cd613e6eae8d673e2198d877583ddff7879d52ba5a94b3dc35d8da0800f199","impliedFormat":99},{"version":"25cbd0baaecc32efabbed23767498e3cd2ebfc8f7a222866efe1e580f08f526b","impliedFormat":99},{"version":"af7d6189331b10c030322f3dc7e600466126bad616f098bda0fce116c7dd09c2","impliedFormat":99}],"root":[97,98,[104,106],[111,136],[138,149]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":99},"fileIdsList":[[107,108,109],[60],[61,78,96,97,98,135],[61,97],[61,103,136],[61,78,96,136],[61,104,105,106,117,124,133,134],[61,104],[61,78,96,103,116,136],[61,96,104,121],[61,121,122,123],[61,118,119,120],[61,96,118,136],[61,78,96,97,110,116,118,136],[61],[61,125,126,127,128,129,130,131,132],[61,78,125,126,127,128],[61,78,96,125,126,127],[61,78,96,116,125,126,127,128],[61,78,116],[61,78,96,116,136],[61,78,125,126,127],[61,96,97,103,124,127,128,129,130,131,136],[61,78,103,110,116,138,139],[61,137],[61,78,96,139],[61,78,96,110,116,136,139,142],[61,138,139,140,141,142,143,144],[61,78,96],[61,96,103,110,136,139,143],[61,78,96,97,98,110,136,139,140,143],[61,97,98,116,135,136,145,148],[61,78,96,97,98,110,116,136,146],[61,146,147],[61,78,96,98,110,136,147],[61,103,110],[61,78,111,112,113,114,115],[99,100],[99],[99,100,101,102],[100],[78,80,81],[78,80],[80],[83],[78,80,86],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[79,80],[79],[78,82],[62,63,64,66],[62,63,67],[62,63,64,66,67],[65],[64],[65,68,75,76,77],[65,68,75],[68],[70],[70,71,72],[65,68,70],[69,73,74],[78,96,97,98,135],[97],[103,136],[78,136],[104,105,106,117,124,133,134,150],[104],[96,103,136],[104,121],[121,122,123,150],[118,119,120,150],[79,96,118,136],[78,96,118,136],[78,96,136],[125,126,127,128,129,130,131,132,150],[78,126,127,128],[78,96,126,127],[78,96,125,127,128],[78],[78,96,116,136],[78,126,127],[96,103,126,127,128,129,136],[78,103,139],[78,96,139],[96,136,139],[138,139,140,141,142,143,144],[78,96],[96,103,136,143],[78,96,98,136,139,140],[97,98,116,135,136,145,148],[78,96,97,136,146],[146,147,150],[78,98,136,147],[103],[78,111,112,113,114,115]],"referencedMap":[[110,1],[61,2],[136,3],[98,4],[104,5],[105,6],[135,7],[106,8],[117,9],[122,10],[124,11],[121,12],[119,13],[120,14],[118,6],[123,15],[133,16],[129,17],[130,18],[131,19],[125,20],[126,20],[127,21],[128,22],[132,23],[134,8],[140,24],[138,25],[141,26],[143,27],[145,28],[139,29],[142,30],[144,31],[97,15],[149,32],[147,33],[148,34],[146,35],[111,36],[112,15],[113,36],[114,15],[116,37],[115,15],[101,38],[100,39],[103,40],[102,41],[82,42],[81,43],[83,44],[84,44],[85,45],[87,46],[88,44],[96,47],[89,44],[90,48],[91,44],[92,44],[80,49],[93,50],[94,43],[86,43],[95,43],[67,51],[64,52],[68,53],[66,54],[63,55],[78,56],[76,57],[69,58],[70,58],[71,59],[73,60],[72,61],[75,62],[74,58]],"exportedModulesMap":[[110,1],[61,2],[136,63],[98,64],[104,65],[105,66],[135,67],[106,68],[117,69],[122,70],[124,71],[121,72],[119,73],[120,74],[118,75],[133,76],[129,77],[130,78],[131,79],[125,80],[126,80],[127,81],[128,82],[132,83],[134,68],[140,84],[141,85],[143,86],[145,87],[139,88],[142,89],[144,90],[149,91],[147,92],[148,93],[146,94],[111,95],[113,95],[116,96],[101,38],[100,39],[103,40],[102,41],[82,42],[81,43],[83,44],[84,44],[85,45],[87,46],[88,44],[96,47],[89,44],[90,48],[91,44],[92,44],[80,49],[93,50],[94,43],[86,43],[95,43],[67,51],[64,52],[68,53],[66,54],[63,55],[78,56],[76,57],[69,58],[70,58],[71,59],[73,60],[72,61],[75,62],[74,58]],"semanticDiagnosticsPerFile":[107,108,110,109,61,60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,79,136,98,104,105,135,106,117,122,124,121,119,120,118,123,133,129,130,131,125,126,127,128,132,134,140,138,141,143,145,139,142,144,97,149,147,148,146,111,112,113,114,116,115,137,99,101,100,103,102,82,81,83,84,85,87,88,96,89,90,91,92,80,93,94,86,95,67,64,68,62,66,63,78,76,77,69,70,71,73,72,75,74,65],"latestChangedDtsFile":"./esm/daemon/transport.d.ts"},"version":"5.0.4"}
1
+ {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.6.0/node_modules/tslib/tslib.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.6.0/node_modules/tslib/modules/index.d.ts","../struct/esm/basic/options.d.ts","../struct/esm/basic/struct-value.d.ts","../struct/esm/basic/field-value.d.ts","../struct/esm/utils.d.ts","../struct/esm/basic/stream.d.ts","../struct/esm/basic/definition.d.ts","../struct/esm/basic/index.d.ts","../struct/esm/types/bigint.d.ts","../struct/esm/types/buffer/base.d.ts","../struct/esm/types/buffer/fixed-length.d.ts","../struct/esm/types/buffer/variable-length.d.ts","../struct/esm/types/buffer/index.d.ts","../struct/esm/types/number.d.ts","../struct/esm/types/index.d.ts","../struct/esm/struct.d.ts","../struct/esm/sync-promise.d.ts","../struct/esm/index.d.ts","../../common/temp/node_modules/.pnpm/web-streams-polyfill@4.0.0-beta.3/node_modules/web-streams-polyfill/types/ponyfill.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/decode-utf8.d.ts","../stream-extra/esm/distribution.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.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/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","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/async-operation-manager.d.ts","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/delay.d.ts","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/promise-resolver.d.ts","../../common/temp/node_modules/.pnpm/@yume-chan+async@2.2.0/node_modules/@yume-chan/async/dts/index.d.ts","./src/utils/auto-reset-event.ts","./src/utils/base64.ts","./src/utils/conditional-variable.ts","./src/utils/hex.ts","./src/utils/no-op.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","./src/commands/sync/request.ts","./src/commands/sync/response.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","../dataview-bigint-polyfill/esm/fallback.d.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"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","impliedFormat":1},{"version":"31973b272be35eab5ecf20a38ea54bec84cdc0317117590cb813c72fe0ef75b3","impliedFormat":99},{"version":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"ffe3c0472cf0ad60edbf5037319135c645bd92e7acbf403d72101df3598258e0","impliedFormat":99},{"version":"64ebe41006e87ea8b5e9b3acf048018b5226c4b08c6575526a76f6801143bf90","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"2414e378fb9e46fe36d8a0f4fb7af126441078299c03a46096713b03a5f6571d","impliedFormat":99},{"version":"1ed47fe653ec1bbcbd8ed241873938642755f2917f9e9a2e78daef11519f0745","impliedFormat":99},{"version":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"2f50c2700b3397c9961c1e14b903d0ff1120e064755603740cecdcdf3b05d20f","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"cff4f19e514fccc06aafecb44d2c6b10516d604d2972da407fa38d344872389e","impliedFormat":99},{"version":"15cc3dd9a039f8ba1628d1e27cdf4b45582fc387a4241ebb65eff1786b89f522","impliedFormat":99},{"version":"01056fd3092681e2f1c0cb0e1fec91ac081b5bb758551494fca1c1d27f06c2b4","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"a387648b45b3d02c838a213809bf7aa3a3c6e009b0cfedbbb98e7863219fd0b4","impliedFormat":99},{"version":"d189c9a6203dd8c814cbabb78ee77ec7f806a8c4f92c4029e8c84cf4d3b69013","impliedFormat":99},{"version":"7e9aecc83330a5c15b10f8995dfce2e1004f9bbdd0c4a9df18e8483facd76703","impliedFormat":99},{"version":"f2afaf5947dd98685a6b7996b57d7fedd13a04ca95820e6d8e1db0e6ec6d24ae","impliedFormat":99},{"version":"280386331ba739ec12261d42474f90f2d98214f9ac87ecad4be0585507acd937","impliedFormat":99},{"version":"316d7bdfb430fa119cbd460e01ffbf726321a5e54575c22b70e8ff56241d849a","impliedFormat":99},{"version":"d5a938d49803873c6de2daa0e81fa87ab44eee5259df765345932a28ecfb64fc","impliedFormat":99},{"version":"6642b7e23799bfb100805fbde097790a6484bd375c2c75dc18da086639f8b7e5","impliedFormat":99},{"version":"f4be8f5f1fbf13b24da4b2141e124c000750454d5168544c27352631e4edccd9","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"662cafdf363d512eff0d6c525c711684dba726ac5f4d09f473110a05c8ecd8e5","impliedFormat":99},{"version":"86c62ba4f3279d13647e2901b8819c9b32f4eb9645d50d02b4d60e5521f693db","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"057f28f1e4c53bfdc397099ee4bf873ef32f26a938a135881b19bf10f968a805","impliedFormat":99},{"version":"d00e790b0d3738482ddb18bb446210b41019520dd32438570d6bc533f7b95239","impliedFormat":99},{"version":"c4e45ef293b9b228aad0d51acb0ef0397dad22a3454b3f6f751b6de1ac9e11e0","impliedFormat":99},{"version":"4665f7e4f0fa5900321d33f85d167ad7653b758ea654e5b6cd63481c6592f7df","impliedFormat":99},{"version":"879ff2595a9455aec7a5bac3640eeae75f27f99cbdc4a7529a1f6f25d0a2a83f","signature":"020962899646e5e2efc7100d1a0c443be16800cef6f2cada68c20fe8de585d43","impliedFormat":99},{"version":"9e2c7a6e8ff78a3f748b508e05ef1a9699149c1f4bbf9613c05273404aabbd46","signature":"48b65aae077c0a25bef9982871b488aebd4161768ee8bb88b9cc0d4736e15644","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":"3da1f7caed231a58716f9793f6e26ea19981769d8b6c23ff0a9c031de69cf7c5","signature":"893c62f5b340f9462a6cd3ce6f40f7f97ecca7c82f6f36c03bbb81128ac14d04","impliedFormat":99},{"version":"88b28919b94e9fb0f20f7c9bcf17ab482e9bcb73dd05a98da1a258c9273bc38f","signature":"18d3ba92c8cd5b0dc0413aa76efde4892c1095c865a6590560f4e30679a31afb","impliedFormat":99},{"version":"894c22bde12ec873bb8740375ba23ccadfae8f4092be61f67582a1f10664a5cb","impliedFormat":1},{"version":"f50339597aa63b1971e8c45fab408449677a31643b93dfc2987dc3ff14ec319f","impliedFormat":1},{"version":"fce5c825b26ac9820114464634b0432a82b3f0f68a8a2f86dd0d187fae3a33d2","impliedFormat":1},{"version":"48c5c4761e707c5d2b36852cb06a251ee1a72863b45a25f277894c67e765ee67","impliedFormat":1},{"version":"dd1f9b133995cece4e93a26e92c2ce07d07258ed23b0aeadfc27ad14584e2036","signature":"40471ac4c2b6056bdc7ee09f1f279345d8fcc40b8b326eac38cff2df37ece97a","impliedFormat":99},{"version":"908b3b32ca18b4745d6b72f147214742c44249cb69910d6d0ceeed590ed51f3c","signature":"c82303f9ddeb0df5c2853ba02e9f1603ad0f01200225e6ee4cb2da53757243c0","impliedFormat":99},{"version":"98e564a7af5aac68d416d0125ff62ea508a01be1fe88caebfe83cbba614e0744","signature":"8923bb9bac8a80132bbf1510facaa96198df1de6df035b77b5a81b681c5fba70","impliedFormat":99},{"version":"0b78b55de56014b05bb0a48b699475ad79e613f7a4a90d8d2ef813450de7bd5d","signature":"390d45fe0b15286282624b4646ac3267a601bf47154e2809cc9c12762d13223b","impliedFormat":99},{"version":"1b632bf33bec6cb2eecbdae41ca0690ac6d3a14b440d3619dd11d7b6de405116","signature":"6bfed074c652e8043dfc926842ebc05f81db6c0c45b521e4bedc9dd8998df736","impliedFormat":99},{"version":"9fca5e617704571d97a09c9d6bafd115ecfdf54e9b719b263bd77cc7820e1e7a","impliedFormat":99},{"version":"f42bc26cb9a7ab6f3eb1cbfd4899c451203b5643aa7045ec1d6989a04febd822","signature":"22a65c300fb8989d8c282e949c1219ba70ec4a7542136629d75072b0c191539f","impliedFormat":99},{"version":"e4ef04db477aca82d5ed8613bf964b06a594984fcabd718c30eb97406613fcb0","signature":"8b686124fd8d7102d8c2293311e0b9b2d48ddae7d88fe0688841b3f440eaef55","impliedFormat":99},{"version":"09179d1ea8b8c4f8f70ff731cfb8301dce8de87efdff04a4d6b38bbdd4d5c7b6","signature":"3662463ad80a475e0e31f0d909c04036e9dc5e4b63141396db38795f6ec20edb","impliedFormat":99},{"version":"22a7116dc13fa58c1701958aaf8b4ee01f6dd42a3385ea02c016db1f3811bf70","signature":"eb5828be18865d34ea3049afc3679267661a290b9858e2cd2866387c70b981ef","impliedFormat":99},{"version":"721313e1405531faa6e144e78ad3561023150692fbbcc23a4db9c2bda7e2b292","impliedFormat":99},{"version":"00236b3cf3a1d10f99a554431d32ca4030604dda2728dc4ba812427fa50ed8de","signature":"aa47cec7289f9c0181d51f2d867f4d5b230715b2433eea83d40e9865b8576de3","impliedFormat":99},{"version":"c31237b9372be26a11a958da8a2ddb789c62c2ec5427009300c9e545ee81b153","signature":"3651947da5192aa0655f8a24ca016b3fb0a65bf24950cf52176d8972c7c32785","impliedFormat":99},{"version":"98da7969aa8079a6625791fdb0806f2cb125ae398bccd84e8cb8a76c454aac93","impliedFormat":99},{"version":"185d2fee0b59bebd6b4a65e6d765b949ee51fd4f4b3f3ab7193f7859ac109624","signature":"ea4d0669fa41158a8ae4dfbcb9f690f3177edd29c83a4cf01b74a4db24c5dcc8","impliedFormat":99},{"version":"0e5ec6d79692f8bda4ffedbc60c133d547a693b7d1c31bce3d34d894a1f08cb2","signature":"57f322a340ec262ca5781c1b58497188bef8e646aa59a2c6ccc82df5d94c3a48","impliedFormat":99},{"version":"65f0161d855f9591894d03750b1de7d345ca0b1029860a63294a979af08fe19c","signature":"70b75c9c14d3ceebb09a8be5b7bb06240e276253e6c2269ad9f178240aa75f87","impliedFormat":99},{"version":"311e13fdc01479279ff2f88df57c1651623e4844b4a3943fe7f2434d65af5783","signature":"8fc0d6a1e97a1fcd37ebdb72241e4608652a69e1a963ca662d1429750cf04f73","impliedFormat":99},{"version":"b27aca4590a871d803c20a97947cadaba015e93c65656543f540cf829270f90c","signature":"8f70945f7ea3ad857863b6035d2ac1fdf1b6793c6a2ca74ce89508f82be4dc29","impliedFormat":99},{"version":"84b201dcaad0531b5e10ac4f52fe53fb2260324b5960cfd00b27b94d5b26be99","signature":"85e159ffc1676583a00e26cdae8f40fa3139e32c89aa7ecbc725e120a8db1418","impliedFormat":99},{"version":"a76699ce12fa156ea1cb852cc653ec5f041796113cdb5540fffbd9a1b24f28b4","signature":"3a908670fbb5fa07652421362e908b98e3abb854dc07b036dcdf800b919901b4","impliedFormat":99},{"version":"49c33dd41c9fcb3c023df247e657a99328a0c7c34728b56806ef112a6c3dc6fe","signature":"15903e848be32baf0039e02e7a4bb64c9169d75f3ae4dd9785b0e7aea8f83ba7","impliedFormat":99},{"version":"eb90fe18be0b3b5b759ff8f055e9ccb19c6a4287c9061c7a4bb9805968e46498","impliedFormat":99},{"version":"04e1a0fa22db9ba79fcded8d78d0358ef669f72ac5bca7e6ab92809fa38480bf","signature":"d73ce6a51a42271a54f27cd4bbc0a1aa9897882a83f35c3ce1a611578305bc11","impliedFormat":99},{"version":"055d5c58abf9c069d88cd9f62a426008adc38258390ceba978fa527fffa54441","impliedFormat":99},{"version":"04479b34621de3b9415baf1ec66814931a4d32f66184d86d7432b27c8e69fb0b","signature":"68c6f49fb343f5d2f50514d6768fbe45d80906cde2ea9b11270640f7f7ae3a87","impliedFormat":99},{"version":"135245a0c940a2c51b6c291eda3b51298a43c8ebb5c8f52adc8875b8f19cb898","impliedFormat":99},{"version":"ad427f6ac6d0c49366edb1b95d3e312cf1c44b4ffc0819e311cd24872ea26dae","signature":"8ec40582c992093bdc404d6d4d21459d31cc4cbd761f738979ba31f2d054cedd","impliedFormat":99},{"version":"0738a2ba60b5ce305fbe08520d46f0ac7e151391666db62ded21bc0d5bf46624","signature":"78ab431a811184547b55f5f0af6f2d2859f5e638b2665bccb5efee2f2d947325","impliedFormat":99},{"version":"325290d80c174c12636e296ab4c20901ddf4081cdb37b8a48b7d5737e0e1ee56","signature":"c5a0d25aae8e65ee55e8bf5e1210e38d902a3eec76d6ef6c7c613a7541f940d1","impliedFormat":99},{"version":"2ecca4372e0d23fb473d4e9a933c31dc36c9f222c4a170668d50a1923edd81bc","signature":"2943c4190d96fc3a3ec84acbd89b8467572facc49459a9727cbd48acb5581c0e","impliedFormat":99},{"version":"ca5b0d25a6ca010f7844170e3fe871fb69a8a48219cf405cb389da64b15d3894","signature":"9f66fed7e4054627742901d37ed23b83e283fa4b032c4d132670cf284b8e9165","impliedFormat":99},{"version":"336a16e98781209727f29dd9ade2742d7186a757f131f52728fbed4d633e9a28","signature":"6bf6be42974564ca2602f155f9e6156114ac920512ffcdfdc91cdda27f816596","impliedFormat":99},{"version":"6d6df545c8b676876452b56da3723e8b6296e7b8ad4dc53e57ca7eb8640b9b5f","signature":"c1271601cf6c43a80fdd5b0b12672b62bb7215909da98e62de501ce69930870f","impliedFormat":99},{"version":"6651e0e8d0a95ccab2cd3b24df4ea6c33da06499f588938f8758d2d3e822090a","impliedFormat":99},{"version":"fd5886381c8d473f4985e986275e87e3ea19e43cfbfe1d24b164101621139e5c","signature":"2dfefff9f09ec7460c4ca86b1c5e5d2cfa0fe9a2a1613916b74a6a4949ea26cc","impliedFormat":99},{"version":"37374190afa252a8bf4fb0766e14e2eb7a8606cda30ded66ed384846eef63580","signature":"74cd613e6eae8d673e2198d877583ddff7879d52ba5a94b3dc35d8da0800f199","impliedFormat":99},{"version":"25cbd0baaecc32efabbed23767498e3cd2ebfc8f7a222866efe1e580f08f526b","impliedFormat":99},{"version":"af7d6189331b10c030322f3dc7e600466126bad616f098bda0fce116c7dd09c2","impliedFormat":99}],"root":[97,98,[104,106],[111,136],[138,149]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":99},"fileIdsList":[[107,108,109],[60],[61,78,96,97,98,135],[61,97],[61,103,136],[61,78,96,136],[61,104,105,106,117,124,133,134],[61,104],[61,78,96,103,116,136],[61,96,104,121],[61,121,122,123],[61,118,119,120],[61,96,118,136],[61,78,96,97,110,116,118,136],[61],[61,125,126,127,128,129,130,131,132],[61,78,125,126,127,128],[61,78,96,125,126,127],[61,78,96,116,125,126,127,128],[61,78,116],[61,78,96,116,136],[61,78,125,126,127],[61,96,97,103,124,127,128,129,130,131,136],[61,78,103,110,116,138,139],[61,137],[61,78,96,139],[61,78,96,110,116,136,139,142],[61,138,139,140,141,142,143,144],[61,78,96],[61,96,103,110,136,139,143],[61,78,96,97,98,110,136,139,140,143],[61,97,98,116,135,136,145,148],[61,78,96,97,98,110,116,136,146],[61,146,147],[61,78,96,98,110,136,147],[61,103,110],[61,78,111,112,113,114,115],[99,100],[99],[99,100,101,102],[100],[78,80,81],[78,80],[80],[84],[78,80,87],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[79,80],[79],[78,82],[62,63,64,66],[62,63,67],[62,63,64,66,67],[65],[64],[65,68,75,76,77],[65,68,75],[68],[70],[70,71,72],[65,68,70],[69,73,74],[78,96,97,98,135],[97],[103,136],[78,136],[104],[96,103,136],[104,121],[79,96,118,136],[78,96,118,136],[78,96,136],[78,126,127,128],[78,96,126,127],[78,96,125,127,128],[78],[78,96,116,136],[78,126,127],[96,103,126,127,128,129,136],[78,103,139],[78,96,139],[96,136,139],[78,96],[96,103,136,143],[78,96,98,136,139,140],[78,96,97,136,146],[78,98,136,147],[103]],"referencedMap":[[110,1],[61,2],[136,3],[98,4],[104,5],[105,6],[135,7],[106,8],[117,9],[122,10],[124,11],[121,12],[119,13],[120,14],[118,6],[123,15],[133,16],[129,17],[130,18],[131,19],[125,20],[126,20],[127,21],[128,22],[132,23],[134,8],[140,24],[138,25],[141,26],[143,27],[145,28],[139,29],[142,30],[144,31],[97,15],[149,32],[147,33],[148,34],[146,35],[111,36],[112,15],[113,36],[114,15],[116,37],[115,15],[101,38],[100,39],[103,40],[102,41],[82,42],[81,43],[83,44],[84,44],[85,44],[86,45],[88,46],[96,47],[89,44],[90,48],[91,44],[92,44],[80,49],[93,50],[94,43],[87,43],[95,43],[67,51],[64,52],[68,53],[66,54],[63,55],[78,56],[76,57],[69,58],[70,58],[71,59],[73,60],[72,61],[75,62],[74,58]],"exportedModulesMap":[[110,1],[61,2],[136,63],[98,64],[104,65],[105,66],[135,7],[106,67],[117,68],[122,69],[124,11],[121,12],[119,70],[120,71],[118,72],[133,16],[129,73],[130,74],[131,75],[125,76],[126,76],[127,77],[128,78],[132,79],[134,67],[140,80],[141,81],[143,82],[145,28],[139,83],[142,84],[144,85],[149,32],[147,86],[148,34],[146,87],[111,88],[113,88],[116,37],[101,38],[100,39],[103,40],[102,41],[82,42],[81,43],[83,44],[84,44],[85,44],[86,45],[88,46],[96,47],[89,44],[90,48],[91,44],[92,44],[80,49],[93,50],[94,43],[87,43],[95,43],[67,51],[64,52],[68,53],[66,54],[63,55],[78,56],[76,57],[69,58],[70,58],[71,59],[73,60],[72,61],[75,62],[74,58]],"semanticDiagnosticsPerFile":[107,108,110,109,61,60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,79,136,98,104,105,135,106,117,122,124,121,119,120,118,123,133,129,130,131,125,126,127,128,132,134,140,138,141,143,145,139,142,144,97,149,147,148,146,111,112,113,114,116,115,137,99,101,100,103,102,82,81,83,84,85,86,88,96,89,90,91,92,80,93,94,87,95,67,64,68,62,66,63,78,76,77,69,70,71,73,72,75,74,65],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"5.1.6"}
@@ -1,11 +0,0 @@
1
- import type { Consumable, ReadableWritablePair } from "@yume-chan/stream-extra";
2
- import type { ValueOrPromise } from "@yume-chan/struct";
3
- import type { AdbPacketData, AdbPacketInit } from "../../src/daemon/packet.js";
4
- export interface AdbDaemonDevice {
5
- readonly serial: string;
6
- readonly name: string | undefined;
7
- connect(): ValueOrPromise<
8
- ReadableWritablePair<AdbPacketData, Consumable<AdbPacketInit>>
9
- >;
10
- }
11
- //# sourceMappingURL=connection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"connection.d.ts","sourceRoot":"","sources":["../../src/daemon/connection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAChF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAExD,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAEhE,MAAM,WAAW,eAAe;IAC5B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAExB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,OAAO,IAAI,cAAc,CACrB,oBAAoB,CAAC,aAAa,EAAE,UAAU,CAAC,aAAa,CAAC,CAAC,CACjE,CAAC;CACL"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=connection.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"connection.js","sourceRoot":"","sources":["../../src/daemon/connection.ts"],"names":[],"mappings":""}