From cb4b40541c9235cefff916128a9cf8270df04d3d Mon Sep 17 00:00:00 2001 From: shikai-123 Date: Mon, 25 Jul 2022 19:49:16 +0800 Subject: [PATCH] Modify old interface issues: https://gitee.com/openharmony/interface_sdk-js/issues/I5ITLA Signed-off-by: shikai-123 --- api/@ohos.process.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/@ohos.process.d.ts b/api/@ohos.process.d.ts index 02b7e123ea..775f0974c2 100644 --- a/api/@ohos.process.d.ts +++ b/api/@ohos.process.d.ts @@ -263,7 +263,7 @@ declare namespace process { * @return Return a child process object. */ function runCmd(command: string, - options?: { timeout : number, killSignal : number | string, maxBuffer : number }): ChildProcess; + options?: { timeout?: number, killSignal?: number | string, maxBuffer?: number }): ChildProcess; /** * Abort current process -- Gitee