From 1b925bcdfce13bd87f24f07654b64197611d3469 Mon Sep 17 00:00:00 2001 From: xdmal Date: Tue, 9 Aug 2022 14:25:37 +0800 Subject: [PATCH] Rectify d.ts file specification Rectify d.ts file specification issue:https://gitee.com/openharmony/interface_sdk-js/issues/I5LF2F Signed-off-by: xdmal --- api/@ohos.process.d.ts | 7 ++++++- api/@ohos.util.d.ts | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/api/@ohos.process.d.ts b/api/@ohos.process.d.ts index 775f0974c2..39f8897d6e 100644 --- a/api/@ohos.process.d.ts +++ b/api/@ohos.process.d.ts @@ -22,7 +22,12 @@ */ declare namespace process { - + /** + * The childprocess object can be used to create a new process. + * @since 7 + * @syscap SystemCapability.Utils.Lang + * @systemapi Hide this for inner system use + */ export interface ChildProcess { /** * return pid is the pid of the current process diff --git a/api/@ohos.util.d.ts b/api/@ohos.util.d.ts index a46db2c3e7..18ccd2420d 100644 --- a/api/@ohos.util.d.ts +++ b/api/@ohos.util.d.ts @@ -269,7 +269,7 @@ declare namespace util { toString(): string; } - class LruBuffer { + class LruBuffer { /** * Default constructor used to create a new LruBuffer instance with the default capacity of 64. * @since 8 -- Gitee