mol_wire_dom 0.0.1304 → 0.0.1306

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 (2) hide show
  1. package/node.d.ts +2 -2
  2. package/package.json +1 -1
package/node.d.ts CHANGED
@@ -506,8 +506,8 @@ declare namespace $ {
506
506
  dir: string;
507
507
  }> {
508
508
  }
509
- const $mol_run_spawn: (command: string, args: readonly string[], options: import("child_process").SpawnOptions) => import("child_process").ChildProcess;
510
- const $mol_run_spawn_sync: (command: string, args?: readonly string[] | undefined, options?: import("child_process").SpawnSyncOptions | undefined) => import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
509
+ const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("child_process").ChildProcess;
510
+ const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
511
511
  type $mol_run_options = {
512
512
  command: readonly string[] | string;
513
513
  dir: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_wire_dom",
3
- "version": "0.0.1304",
3
+ "version": "0.0.1306",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",