From f7c7dd3fca0d9ef2b79f625eed589a7ff8e853f5 Mon Sep 17 00:00:00 2001 From: wanglili12 Date: Sat, 21 Jun 2025 15:04:37 +0800 Subject: [PATCH] =?UTF-8?q?typeNode=20attribute=E6=96=B9=E6=B3=95=E6=94=B9?= =?UTF-8?q?=E4=B8=BAget?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wanglili12 --- api/arkui/FrameNode.d.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/arkui/FrameNode.d.ts b/api/arkui/FrameNode.d.ts index cbc125790b..a0e9b41911 100644 --- a/api/arkui/FrameNode.d.ts +++ b/api/arkui/FrameNode.d.ts @@ -969,15 +969,14 @@ export declare abstract class TypedFrameNode extends FrameNode { /** * Get attribute instance of FrameNode to set attributes. * - * @type { T } - * @readonly + * @returns { T } - Returns the attribute instance of FrameNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 20 * @arkts 1.2 */ - readonly attribute: T; + get attribute(): T; } /** -- Gitee