From 26a09f08cf1ed43c640879f23fdad56c5c9282f7 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:02:38 +0800 Subject: [PATCH] TODO#139884 Banner 1 文案調整 --- PAMapp/node_modules/@types/node/child_process.d.ts | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/PAMapp/node_modules/@types/node/child_process.d.ts b/PAMapp/node_modules/@types/node/child_process.d.ts index 0851f51..7eae502 100755 --- a/PAMapp/node_modules/@types/node/child_process.d.ts +++ b/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; } -- Gitblit v1.8.0