mol_db 0.0.1759 → 0.0.1760

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 +4 -4
  2. package/package.json +1 -1
package/node.d.ts CHANGED
@@ -653,8 +653,8 @@ declare namespace $ {
653
653
  dir: string;
654
654
  }> {
655
655
  }
656
- const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("node:child_process").ChildProcess;
657
- const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer>;
656
+ const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("child_process").ChildProcess;
657
+ const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string | NonSharedBuffer>;
658
658
  type $mol_run_options = {
659
659
  command: readonly string[] | string;
660
660
  dir: string;
@@ -663,10 +663,10 @@ declare namespace $ {
663
663
  };
664
664
  class $mol_run extends $mol_object {
665
665
  static async_enabled(): boolean;
666
- static spawn(options: $mol_run_options): import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer> | $mol_run_error_context;
666
+ static spawn(options: $mol_run_options): import("child_process").SpawnSyncReturns<string | NonSharedBuffer> | $mol_run_error_context;
667
667
  static spawn_async({ dir, sync, timeout, command, env }: $mol_run_options & {
668
668
  sync?: boolean;
669
- }): import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer> | (Promise<$mol_run_error_context> & {
669
+ }): import("child_process").SpawnSyncReturns<string | NonSharedBuffer> | (Promise<$mol_run_error_context> & {
670
670
  destructor: () => void;
671
671
  });
672
672
  static error_message(res?: $mol_run_error_context): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_db",
3
- "version": "0.0.1759",
3
+ "version": "0.0.1760",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",