From 0a595aaae1169675370d6242cd2ebb9049f64bd4 Mon Sep 17 00:00:00 2001 From: chuanstudy Date: Thu, 11 Sep 2025 10:42:03 +0000 Subject: [PATCH] number to int stage4 focus Signed-off-by: chuanstudy --- 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 5eb3d738e0..328989f174 100644 --- a/api/@ohos.window.d.ts +++ b/api/@ohos.window.d.ts @@ -9566,7 +9566,7 @@ declare namespace window { /** * Raise main window above another. * - * @param { number } windowId - Indicates target window id. + * @param { int } windowId - Indicates target window id. * @returns { Promise } - The promise returned by the function. * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 801 - Capability not supported. @@ -9580,7 +9580,7 @@ declare namespace window { * @systemapi Hide this for inner system use. * @since 20 */ - raiseMainWindowAboveTarget(windowId: number): Promise; + raiseMainWindowAboveTarget(windowId: int): Promise; /** * Set whether to enable an app sub window to raise itself by click. -- Gitee