From 6a08bb70838bd76cd08ef6ef8fa45b694c0459e9 Mon Sep 17 00:00:00 2001 From: zhoukechen Date: Tue, 8 Jul 2025 21:21:46 +0800 Subject: [PATCH] =?UTF-8?q?remove=20systemapi=E4=B8=AD=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E7=9A=84=E8=B7=A8=E5=B9=B3=E5=8F=B0=E6=A0=87?= =?UTF-8?q?=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhoukechen --- api/@internal/component/ets/styled_string.d.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/api/@internal/component/ets/styled_string.d.ts b/api/@internal/component/ets/styled_string.d.ts index 33df807764..c2859db56f 100644 --- a/api/@internal/component/ets/styled_string.d.ts +++ b/api/@internal/component/ets/styled_string.d.ts @@ -24,8 +24,6 @@ * @typedef { UserDataSpan } StyledStringMarshallingValue * @syscap SystemCapability.ArkUI.ArkUI.Full * @systemapi - * @crossplatform - * @atomicservice * @since 19 */ declare type StyledStringMarshallingValue = UserDataSpan; @@ -39,8 +37,6 @@ declare type StyledStringMarshallingValue = UserDataSpan; * @returns { ArrayBuffer } Array buffer from the serialized marshalling value * @syscap SystemCapability.ArkUI.ArkUI.Full * @systemapi - * @crossplatform - * @atomicservice * @since 19 */ declare type StyledStringMarshallCallback = (marshallableVal: StyledStringMarshallingValue) => ArrayBuffer; @@ -53,8 +49,6 @@ declare type StyledStringMarshallCallback = (marshallableVal: StyledStringMarsha * @returns { StyledStringMarshallingValue } Marshalling value from the deserialized ArrayBuffer. * @syscap SystemCapability.ArkUI.ArkUI.Full * @systemapi - * @crossplatform - * @atomicservice * @since 19 */ declare type StyledStringUnmarshallCallback = (buf: ArrayBuffer) => StyledStringMarshallingValue; -- Gitee