frida 16.7.16 → 16.7.18

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.
@@ -100,7 +100,7 @@ export class Device extends _Device {
100
100
  attach(target: TargetProcess, options?: SessionOptions, cancellable?: Cancellable | null): Promise<Session>;
101
101
  injectLibraryFile(target: TargetProcess, path: string, entrypoint: string, data: string, cancellable?: Cancellable | null): Promise<InjecteeID>;
102
102
  injectLibraryBlob(target: TargetProcess, blob: Buffer, entrypoint: string, data: string, cancellable?: Cancellable | null): Promise<InjecteeID>;
103
- openChannel(address: string, cancellable?: Cancellable | null): Promise<NodeJS.ReadWriteStream>;
103
+ openChannel(address: string, cancellable?: Cancellable | null): Promise<import("stream").Duplex>;
104
104
  readonly output: Signal<OutputHandler>;
105
105
  readonly uninjected: Signal<UninjectedHandler>;
106
106
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "16.7.16",
3
+ "version": "16.7.18",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
@@ -445,7 +445,7 @@ if (opts !== undefined) {
445
445
  custom_logic="const pid = await this.#getPid(target, cancellable);",
446
446
  ),
447
447
  "open_channel": MethodCustomizations(
448
- return_typing="Promise<NodeJS.ReadWriteStream>",
448
+ return_typing='Promise<import("stream").Duplex>',
449
449
  return_wrapper="new IOStreamAdapter",
450
450
  ),
451
451
  },
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 16.7.16
3
+ revision = 16.7.18
4
4
  depth = 1
5
5
 
6
6
  [provide]