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.
- package/node.d.ts +4 -4
- 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("
|
|
657
|
-
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("
|
|
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("
|
|
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("
|
|
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;
|