From 800750b0938f3530375111ab562e2739484d46b4 Mon Sep 17 00:00:00 2001 From: Zenix Date: Fri, 4 Jul 2025 14:28:54 +0800 Subject: [PATCH] ADDComponentContentTempalte Signed-off-by: Zenix --- api/arkui/component/common.static.d.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/arkui/component/common.static.d.ets b/api/arkui/component/common.static.d.ets index 31b466c06d..8dcc432695 100644 --- a/api/arkui/component/common.static.d.ets +++ b/api/arkui/component/common.static.d.ets @@ -12200,7 +12200,7 @@ export declare interface CommonMethod { /** * Add mask text to the current component. The layout is the same as that of the current component. * - * @param { string | CustomBuilder | ComponentContent } value + * @param { string | CustomBuilder | ComponentContent } value * @param { OverlayOptions } options * @returns { T } * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -12209,7 +12209,7 @@ export declare interface CommonMethod { * @atomicservice * @since 20 */ - default overlay(value: string | CustomBuilder | ComponentContent | undefined, options?: OverlayOptions | undefined): this; + default overlay(value: string | CustomBuilder | ComponentContent, options?: OverlayOptions): this; /** * Linear Gradient * angle: Angle of Linear Gradient. The default value is 180; -- Gitee