diff --git a/api/@ohos.bundle.bundleManager.d.ts b/api/@ohos.bundle.bundleManager.d.ts index 12f7b31f2b50c851fa436e2fd0bcae613bbe93ed..5ce3e810868c0467bad99eef604ddc1bd97b1e22 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, } /**