mol_crypto_lib 0.1.1422 → 0.1.1424
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/node.js.map +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.d.ts
CHANGED
@@ -482,8 +482,8 @@ declare namespace $ {
|
|
482
482
|
dir: string;
|
483
483
|
}> {
|
484
484
|
}
|
485
|
-
const $mol_run_spawn: (
|
486
|
-
const $mol_run_spawn_sync: (
|
485
|
+
const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("child_process").ChildProcess;
|
486
|
+
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
|
487
487
|
type $mol_run_options = {
|
488
488
|
command: readonly string[] | string;
|
489
489
|
dir: string;
|