From 4b911f84f7bd574ffc18efc2d079e650e75598d5 Mon Sep 17 00:00:00 2001 From: wujinhui Date: Wed, 13 Aug 2025 18:45:30 +0800 Subject: [PATCH] =?UTF-8?q?ArkTS1.2=20=E5=92=8CArkTS1.1=20Object=E4=B8=8D?= =?UTF-8?q?=E4=B8=80=E8=87=B4=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wujinhui --- api/arkui/ComponentContent.static.d.ets | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/arkui/ComponentContent.static.d.ets b/api/arkui/ComponentContent.static.d.ets index 1143847e3c1..3de615f5ec6 100644 --- a/api/arkui/ComponentContent.static.d.ets +++ b/api/arkui/ComponentContent.static.d.ets @@ -24,6 +24,7 @@ import { BuildOptions } from './BuilderNode'; import { Content } from './Content'; import { UIContext } from '../@ohos.arkui.UIContext'; import { WrappedBuilder, CustomBuilder, CustomBuilderT } from './component/builder'; +import { RecordData } from '../@ohos.base'; /** * Defines the base class for ComponentContent. * @@ -91,11 +92,11 @@ export declare class ComponentContent extends ComponentContentBas /** * Reuse the ComponentContent based on the provided parameters. * - * @param { Object } [param] - Parameters for reusing ComponentContent. + * @param { RecordData } [param] - Parameters for reusing ComponentContent. * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - reuse(param?: Object): void; + reuse(param?: RecordData): void; /** * Recycle the ComponentContent. -- Gitee