From 59a27ebc0b1950e9484bf181428b0ffe4657c08c Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 20 Jun 2025 11:12:32 +0800 Subject: [PATCH] add ani option Signed-off-by: unknown --- api/@ohos.app.ability.StartOptions.d.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/api/@ohos.app.ability.StartOptions.d.ts b/api/@ohos.app.ability.StartOptions.d.ts index 8526689c43..fadb92c398 100644 --- a/api/@ohos.app.ability.StartOptions.d.ts +++ b/api/@ohos.app.ability.StartOptions.d.ts @@ -250,4 +250,25 @@ export default class StartOptions { * @since 20 */ hideStartWindow?: boolean; + + /** + * Hide start window or not when launch ability from same bundle. + * + * @type { ?boolean } + * @syscap SystemCapability.Ability.AbilityRuntime.Core + * @stagemodelonly + * @since 20 + */ + animationOptions?: StartAnimationOptions; + + /** + * Hide start window or not when launch ability from same bundle. + * + * @type { ?boolean } + * @syscap SystemCapability.Ability.AbilityRuntime.Core + * @systemapi + * @stagemodelonly + * @since 20 + */ + animationSystemOptions?: StartAnimationSystemOptions; } \ No newline at end of file -- Gitee