From f43b2949e9b040e00e0fab57e549ce3938dc8e76 Mon Sep 17 00:00:00 2001 From: liuhui Date: Wed, 18 Jun 2025 11:36:51 +0800 Subject: [PATCH 1/4] sync description with api interface Signed-off-by: liuhui --- api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets index f19a5b0a6b..db0dbbc885 100644 --- a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets +++ b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets @@ -54,7 +54,7 @@ export declare struct FullScreenLaunchComponent { */ options?: AtomicServiceOptions; /** - * Indicates the callback of onError. + * Callback triggered when an error occurs during running of the started ExtensionAbility. It is supported only when the atomic service runs in embedded mode, with the parameter being of type BusinessError. * @type { ?ErrorCallback } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice @@ -62,7 +62,7 @@ export declare struct FullScreenLaunchComponent { */ onError?: ErrorCallback; /** - * Indicates the callback of onTerminated. + * Callback triggered when the EmbeddableUIAbility is terminated to receive the information about the termination. It is supported only when the atomic service runs in embedded mode, with the parameter being of type TerminationInfo. * @type { ?Callback } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice -- Gitee From 82e1eae512bc1c03928484b533d634e3a4f318dc Mon Sep 17 00:00:00 2001 From: liuhui Date: Thu, 19 Jun 2025 06:25:09 +0000 Subject: [PATCH 2/4] update api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets. Signed-off-by: liuhui --- api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets index db0dbbc885..dd10c28867 100644 --- a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets +++ b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets @@ -54,7 +54,9 @@ export declare struct FullScreenLaunchComponent { */ options?: AtomicServiceOptions; /** - * Callback triggered when an error occurs during running of the started ExtensionAbility. It is supported only when the atomic service runs in embedded mode, with the parameter being of type BusinessError. + * Callback triggered when an error occurs during running of the started ExtensionAbility. + * It is supported only when the atomic service runs in embedded mode, + * with the parameter being of type BusinessError. * @type { ?ErrorCallback } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice @@ -62,7 +64,9 @@ export declare struct FullScreenLaunchComponent { */ onError?: ErrorCallback; /** - * Callback triggered when the EmbeddableUIAbility is terminated to receive the information about the termination. It is supported only when the atomic service runs in embedded mode, with the parameter being of type TerminationInfo. + * Callback triggered when the EmbeddableUIAbility is terminated to receive the information + * about the termination. It is supported only when the atomic service runs in embedded mode, + * with the parameter being of type TerminationInfo. * @type { ?Callback } * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice -- Gitee From 7ad81b4ebbdcda2485d62a9f60454795f31c6578 Mon Sep 17 00:00:00 2001 From: liuhui Date: Thu, 19 Jun 2025 06:59:03 +0000 Subject: [PATCH 3/4] update api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets. Signed-off-by: liuhui --- api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets index dd10c28867..125cbc8d4f 100644 --- a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets +++ b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets @@ -22,7 +22,9 @@ import AtomicServiceOptions from '@ohos.app.ability.AtomicServiceOptions'; import { Callback, ErrorCallback } from '@ohos.base'; /** - * Declare component FullScreenLaunchComponent + * Declare component FullScreenLaunchComponent, a component provided by ArkUI that allows + * you to define and use it in your application through the ArkTS-based declarative + * development paradigm. * @syscap SystemCapability.ArkUI.ArkUI.Full * @atomicservice * @since 12 -- Gitee From b9a876f58f9520333f13e2788a37516786b5390f Mon Sep 17 00:00:00 2001 From: liuhui Date: Thu, 19 Jun 2025 07:02:40 +0000 Subject: [PATCH 4/4] update api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets. Signed-off-by: liuhui --- api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets index 125cbc8d4f..d3b4b9539a 100644 --- a/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets +++ b/api/@ohos.arkui.advanced.FullScreenLaunchComponent.d.ets @@ -22,7 +22,7 @@ import AtomicServiceOptions from '@ohos.app.ability.AtomicServiceOptions'; import { Callback, ErrorCallback } from '@ohos.base'; /** - * Declare component FullScreenLaunchComponent, a component provided by ArkUI that allows + * Declares the FullScreenLaunchComponent, a component provided by ArkUI that allows * you to define and use it in your application through the ArkTS-based declarative * development paradigm. * @syscap SystemCapability.ArkUI.ArkUI.Full -- Gitee