From 8134091d5cef28861278b12604e8668a642284a1 Mon Sep 17 00:00:00 2001 From: houguobiao Date: Thu, 21 Aug 2025 23:16:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0getTopOrder=E5=92=8CgetBottom?= =?UTF-8?q?Order=E6=8E=A5=E5=8F=A3=E6=94=AF=E6=8C=81=E8=BF=94=E5=9B=9Eunde?= =?UTF-8?q?fined?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: houguobiao Change-Id: I36d0f4efe33906cd12192c2448a25b5adf9a82b1 --- api/@ohos.arkui.UIContext.static.d.ets | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/@ohos.arkui.UIContext.static.d.ets b/api/@ohos.arkui.UIContext.static.d.ets index 5b07f38ef0..24c44e188b 100755 --- a/api/@ohos.arkui.UIContext.static.d.ets +++ b/api/@ohos.arkui.UIContext.static.d.ets @@ -770,20 +770,20 @@ export declare class PromptAction { /** * Get order value of top dialog. * - * @returns { LevelOrder } the display order. + * @returns { LevelOrder | undefined } the display order. * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - getTopOrder(): LevelOrder; + getTopOrder(): LevelOrder | undefined; /** * Get order value of bottom dialog. * - * @returns { LevelOrder } the display order. + * @returns { LevelOrder | undefined } the display order. * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - getBottomOrder(): LevelOrder; + getBottomOrder(): LevelOrder | undefined; /** * Open popup with frameNode. -- Gitee