From 1ce7a2f50fc67d74d1d12cd133a1fb5119419fe2 Mon Sep 17 00:00:00 2001 From: chengzhihao Date: Tue, 3 Jun 2025 10:30:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=8E=E4=B8=BB=E5=B9=B2?= =?UTF-8?q?=E5=B7=AE=E5=BC=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue: https://gitee.com/openharmony/interface_sdk-js/issues/ICC1TT Signed-off-by: chengzhihao --- api/@ohos.uri.d.ts | 2 +- api/@ohos.util.ArrayList.d.ts | 2 +- api/@ohos.util.json.d.ts | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/api/@ohos.uri.d.ts b/api/@ohos.uri.d.ts index 4073c28671..0567d481bb 100644 --- a/api/@ohos.uri.d.ts +++ b/api/@ohos.uri.d.ts @@ -1162,7 +1162,7 @@ declare namespace uri { * @since 20 * @arkts 1.2 */ - set encodedSSP(input: string | null) + set encodedSSP(input: string | null); } } export default uri; diff --git a/api/@ohos.util.ArrayList.d.ts b/api/@ohos.util.ArrayList.d.ts index f8853a1901..455a6e5e2e 100644 --- a/api/@ohos.util.ArrayList.d.ts +++ b/api/@ohos.util.ArrayList.d.ts @@ -295,7 +295,7 @@ declare class ArrayList { * * @param { number } index - index index the index in the arraylist * @returns { T } the T type ,returns undefined if arraylist is empty,If the index is - * @throws { BusinessError } 10200001 - The value of "index" is out of range. + * @throws { BusinessError } 10200001 - The value of index is out of range. * @throws { BusinessError } 10200011 - The removeByIndex method cannot be bound. * @throws { BusinessError } 401 - Parameter error. Possible causes: * 1.Mandatory parameters are left unspecified; diff --git a/api/@ohos.util.json.d.ts b/api/@ohos.util.json.d.ts index 927eb0db21..e945bfd44d 100644 --- a/api/@ohos.util.json.d.ts +++ b/api/@ohos.util.json.d.ts @@ -36,7 +36,6 @@ declare namespace json { * @param { Object } this - The object to which the parsed key value pair belongs. * @param { string } key - Attribute name. * @param { Object } value - The value of the parsed key value pair. - * @returns { Object | undefined | null } Return an Object, undefined or null value * @syscap SystemCapability.Utils.Lang * @atomicservice * @since arkts {'1.1':'12', '1.2':'20'} -- Gitee