保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 23b60dc1975db38c280d8a123aff97544d1673e0
PAMapp/node_modules/@types/node/child_process.d.ts
@@ -60,7 +60,7 @@
 * For certain use cases, such as automating shell scripts, the `synchronous counterparts` may be more convenient. In many cases, however,
 * the synchronous methods can have significant impact on performance due to
 * stalling the event loop while spawned processes complete.
 * @see [source](https://github.com/nodejs/node/blob/v16.9.0/lib/child_process.js)
 * @see [source](https://github.com/nodejs/node/blob/v17.0.0/lib/child_process.js)
 */
declare module 'child_process' {
    import { ObjectEncodingOptions } from 'node:fs';
@@ -789,6 +789,7 @@
    function spawn(command: string, args: ReadonlyArray<string>, options: SpawnOptions): ChildProcess;
    interface ExecOptions extends CommonOptions {
        shell?: string | undefined;
        signal?: AbortSignal | undefined;
        maxBuffer?: number | undefined;
        killSignal?: NodeJS.Signals | number | undefined;
    }