From 9931d28aa23e6a7c8ea6eb3add4e3d07557e8f67 Mon Sep 17 00:00:00 2001 From: liuyongkai2 Date: Wed, 23 Jul 2025 16:47:56 +0800 Subject: [PATCH] =?UTF-8?q?callbcak=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liuyongkai2 --- api/arkui/component/common.static.d.ets | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/api/arkui/component/common.static.d.ets b/api/arkui/component/common.static.d.ets index 31b466c06d..85ea8cb81c 100644 --- a/api/arkui/component/common.static.d.ets +++ b/api/arkui/component/common.static.d.ets @@ -5809,12 +5809,12 @@ export declare interface AxisEvent extends BaseEvent { /** * Active event bubbling. * - * @type { Callback } + * @type { function } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice * @since 20 */ - propagation: Callback; + propagation: () => void; /** * Obtains the value of the horizontal scroll axis for this axis event. * @@ -6773,12 +6773,12 @@ export declare interface FocusAxisEvent extends BaseEvent { /** * The blocking event pops up. * - * @type { Callback } + * @type { function } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice * @since 20 */ - stopPropagation: Callback; + stopPropagation: () => void; } /** * CrownEvent object description @@ -6828,12 +6828,12 @@ export declare interface CrownEvent { /** * The blocking event pops up. * - * @type { Callback } + * @type { function } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice * @since 20 */ - stopPropagation: Callback; + stopPropagation: () => void; } /** * Overlay module options -- Gitee