From a7c8cf424f50812abb7e3c7851121be21ceb2d89 Mon Sep 17 00:00:00 2001 From: txzhang94 Date: Fri, 11 Jul 2025 11:57:25 +0800 Subject: [PATCH] add expandDynamicWrappedBuilder function Signed-off-by: txzhang94 Change-Id: Ide6f08a4f478bfdf9ea20d61cfe9b2765fa8fbe6 --- api/arkui/component/interop.d.ets | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/api/arkui/component/interop.d.ets b/api/arkui/component/interop.d.ets index a576e7f180..36992e4287 100644 --- a/api/arkui/component/interop.d.ets +++ b/api/arkui/component/interop.d.ets @@ -113,3 +113,14 @@ export declare function getCompatibleState( state: IDecoratedV1Variable, createCompatibleState: ESValue ): ESValue; + +/** + * Obtains the compatible WrappedBuilder. + * + * @param { Any } builder - the WrappedBuilder + * @param { FixedArray } args - the parameters of WrappedBuilder + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @since 20 + */ +@Builder +export declare function compatibleWrappedBuilder(builder: Any, ...args: FixedArray): void; \ No newline at end of file -- Gitee