mol_jsx_lib 0.0.1187 → 0.0.1189
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 +2 -2
- package/package.json +1 -1
package/node.d.ts
CHANGED
|
@@ -443,8 +443,8 @@ declare namespace $ {
|
|
|
443
443
|
dir: string;
|
|
444
444
|
}> {
|
|
445
445
|
}
|
|
446
|
-
const $mol_run_spawn: (
|
|
447
|
-
const $mol_run_spawn_sync: (
|
|
446
|
+
const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("child_process").ChildProcess;
|
|
447
|
+
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
|
|
448
448
|
type $mol_run_options = {
|
|
449
449
|
command: readonly string[] | string;
|
|
450
450
|
dir: string;
|