diff --git a/api/arkui/FrameNode.d.ts b/api/arkui/FrameNode.d.ts index cbc125790be69c179b4004636c27de499ed20cdf..a0e9b419116e0c3cd419d94517d8b9f97c51ea52 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; } /**