From be359c6449c054e58d1176e61092b12507682bd0 Mon Sep 17 00:00:00 2001 From: wangbing Date: Fri, 8 Aug 2025 15:48:41 +0800 Subject: [PATCH] add withoutTip Signed-off-by: wangbing --- api/@ohos.app.ability.OpenLinkOptions.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/api/@ohos.app.ability.OpenLinkOptions.d.ts b/api/@ohos.app.ability.OpenLinkOptions.d.ts index 63873b4f2c..4c87dc4417 100644 --- a/api/@ohos.app.ability.OpenLinkOptions.d.ts +++ b/api/@ohos.app.ability.OpenLinkOptions.d.ts @@ -53,4 +53,16 @@ export default interface OpenLinkOptions { * @arkts 1.1&1.2 */ parameters?: Record; + + /** + * Determines whether to present a dialog on deep linking failure. + * + * @type { ?boolean } + * @syscap SystemCapability.Ability.AbilityRuntime.Core + * @stagemodelonly + * @atomicservice + * @since 21 + * @arkts 1.1&1.2 + */ + withoutDialog?: boolean; } -- Gitee