From d28ce04491561d65f52f51cb839a64c8be1fcd7f Mon Sep 17 00:00:00 2001 From: SoftSquirrel Date: Thu, 27 Oct 2022 10:56:16 +0800 Subject: [PATCH] Issue:#I5XZ02 Description: delete unknown type Sig: SIG_ApplicaitonFramework Feature or Bugfix: Bugfix Binary Source: No Signed-off-by: SoftSquirrel --- api/@ohos.bundle.bundleManager.d.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/api/@ohos.bundle.bundleManager.d.ts b/api/@ohos.bundle.bundleManager.d.ts index 12f7b31f2b..5ce3e81086 100644 --- a/api/@ohos.bundle.bundleManager.d.ts +++ b/api/@ohos.bundle.bundleManager.d.ts @@ -422,36 +422,30 @@ import * as _ExtensionAbilityInfo from './bundleManager/extensionAbilityInfo'; * Indicates ability type * @enum {number} * @syscap SystemCapability.BundleManager.BundleFramework.Core + * @FAModelOnly * @since 9 */ export enum AbilityType { - /** - * Indicates an unknown ability type - * @syscap SystemCapability.BundleManager.BundleFramework.Core - * @since 9 - */ - UNKNOWN, - /** * Indicates that the ability has a UI * @syscap SystemCapability.BundleManager.BundleFramework.Core * @since 9 */ - PAGE, + PAGE = 1, /** * Indicates that the ability does not have a UI * @syscap SystemCapability.BundleManager.BundleFramework.Core * @since 9 */ - SERVICE, + SERVICE = 2, /** * Indicates that the ability is used to provide data access services * @syscap SystemCapability.BundleManager.BundleFramework.Core * @since 9 */ - DATA, + DATA = 3, } /** -- Gitee