mol_wire_dom 0.0.1752 → 0.0.1753
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
|
@@ -729,8 +729,8 @@ declare namespace $ {
|
|
|
729
729
|
dir: string;
|
|
730
730
|
}> {
|
|
731
731
|
}
|
|
732
|
-
const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("child_process").ChildProcess;
|
|
733
|
-
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string | NonSharedBuffer>;
|
|
732
|
+
const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("node:child_process").ChildProcess;
|
|
733
|
+
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer>;
|
|
734
734
|
type $mol_run_options = {
|
|
735
735
|
command: readonly string[] | string;
|
|
736
736
|
dir: string;
|
|
@@ -739,10 +739,10 @@ declare namespace $ {
|
|
|
739
739
|
};
|
|
740
740
|
class $mol_run extends $mol_object {
|
|
741
741
|
static async_enabled(): boolean;
|
|
742
|
-
static spawn(options: $mol_run_options): import("child_process").SpawnSyncReturns<string | NonSharedBuffer> | $mol_run_error_context;
|
|
742
|
+
static spawn(options: $mol_run_options): import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer> | $mol_run_error_context;
|
|
743
743
|
static spawn_async({ dir, sync, timeout, command, env }: $mol_run_options & {
|
|
744
744
|
sync?: boolean;
|
|
745
|
-
}): import("child_process").SpawnSyncReturns<string | NonSharedBuffer> | (Promise<$mol_run_error_context> & {
|
|
745
|
+
}): import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer> | (Promise<$mol_run_error_context> & {
|
|
746
746
|
destructor: () => void;
|
|
747
747
|
});
|
|
748
748
|
static error_message(res?: $mol_run_error_context): string;
|