From 48c7470ff9d426d96ea861a2458f7fad00163c08 Mon Sep 17 00:00:00 2001 From: humeng Date: Thu, 22 Aug 2024 15:48:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9unknown=E4=B8=BAObject?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: humeng --- api/@ohos.atomicservice.NavPushPathHelper.d.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.atomicservice.NavPushPathHelper.d.ets b/api/@ohos.atomicservice.NavPushPathHelper.d.ets index d4a7591670..fb559885ec 100644 --- a/api/@ohos.atomicservice.NavPushPathHelper.d.ets +++ b/api/@ohos.atomicservice.NavPushPathHelper.d.ets @@ -111,7 +111,7 @@ export declare class NavPushPathHelper { * * @param { string } moduleName - Module name * @param { string } name - Indicates the name of the route page to be pushed. - * @param { unknown } param - Indicates the detailed parameter of the route page to be pushed. + * @param { Object } param - Indicates the detailed parameter of the route page to be pushed. * @param { boolean } [animated] - Indicates whether the transition is animated. * @returns { Promise } The promise returned by the function. * @throws { BusinessError } 300001 - hsp silent install fail. @@ -119,7 +119,7 @@ export declare class NavPushPathHelper { * @atomicservice * @since 12 */ - pushPathByName(moduleName: string, name: string, param: unknown, animated?: boolean): Promise; + pushPathByName(moduleName: string, name: string, param: Object, animated?: boolean): Promise; /** * Pushes the specified route page into the stack. -- Gitee