From 8a71b37fe1532053ea18b29688a9d544780cf202 Mon Sep 17 00:00:00 2001 From: Hayden Lee Date: Wed, 25 Jun 2025 16:06:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=9E=E9=80=80getLastWindow=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=86=97=E4=BD=99export?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hayden Lee --- api/@ohos.window.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.window.d.ts b/api/@ohos.window.d.ts index 889334c550..a9991673c6 100644 --- a/api/@ohos.window.d.ts +++ b/api/@ohos.window.d.ts @@ -3282,7 +3282,7 @@ declare namespace window { * @since arkts {'1.1':'12', '1.2':'20'} * @arkts 1.1&1.2 */ - export function getLastWindow(ctx: BaseContext, callback: AsyncCallback): void; + function getLastWindow(ctx: BaseContext, callback: AsyncCallback): void; /** * Get the final show window. @@ -3325,7 +3325,7 @@ declare namespace window { * @since arkts {'1.1':'12', '1.2':'20'} * @arkts 1.1&1.2 */ - export function getLastWindow(ctx: BaseContext): Promise; + function getLastWindow(ctx: BaseContext): Promise; /** * Minimize all app windows. -- Gitee