mol_wire_dom 0.0.1556 → 0.0.1557
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
|
@@ -520,7 +520,7 @@ declare namespace $ {
|
|
|
520
520
|
}> {
|
|
521
521
|
}
|
|
522
522
|
const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("child_process").ChildProcess;
|
|
523
|
-
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string |
|
|
523
|
+
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("child_process").SpawnSyncReturns<string | NonSharedBuffer>;
|
|
524
524
|
type $mol_run_options = {
|
|
525
525
|
command: readonly string[] | string;
|
|
526
526
|
dir: string;
|
|
@@ -529,10 +529,10 @@ declare namespace $ {
|
|
|
529
529
|
};
|
|
530
530
|
class $mol_run extends $mol_object {
|
|
531
531
|
static async_enabled(): boolean;
|
|
532
|
-
static spawn(options: $mol_run_options): $mol_run_error_context | import("child_process").SpawnSyncReturns<string |
|
|
532
|
+
static spawn(options: $mol_run_options): $mol_run_error_context | import("child_process").SpawnSyncReturns<string | NonSharedBuffer>;
|
|
533
533
|
static spawn_async({ dir, sync, timeout, command, env }: $mol_run_options & {
|
|
534
534
|
sync?: boolean;
|
|
535
|
-
}): import("child_process").SpawnSyncReturns<string |
|
|
535
|
+
}): import("child_process").SpawnSyncReturns<string | NonSharedBuffer> | (Promise<$mol_run_error_context> & {
|
|
536
536
|
destructor: () => void;
|
|
537
537
|
});
|
|
538
538
|
static error_message(res?: $mol_run_error_context): string;
|
|
@@ -540,7 +540,7 @@ declare namespace $ {
|
|
|
540
540
|
}
|
|
541
541
|
|
|
542
542
|
declare namespace $ {
|
|
543
|
-
function $mol_exec(this: $, dir: string, command: string, ...args: readonly string[]): $mol_run_error_context | import("child_process").SpawnSyncReturns<string |
|
|
543
|
+
function $mol_exec(this: $, dir: string, command: string, ...args: readonly string[]): $mol_run_error_context | import("child_process").SpawnSyncReturns<string | NonSharedBuffer>;
|
|
544
544
|
}
|
|
545
545
|
|
|
546
546
|
declare namespace $ {
|