bundle api support syscap

Signed-off-by: shuaiyutao <shuaiyutao1@huawei.com>
This commit is contained in:
shuaiyutao 2022-02-09 18:55:07 +08:00
parent bb58bdfd4a
commit c635b22073
18 changed files with 300 additions and 343 deletions

130
api/@ohos.bundle.d.ts vendored
View File

@ -28,8 +28,7 @@ import { PermissionDef } from './bundle/PermissionDef';
* bundle. * bundle.
* @name bundle * @name bundle
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable
* @permission NA * @permission NA
*/ */
declare namespace bundle { declare namespace bundle {
@ -37,10 +36,9 @@ declare namespace bundle {
/** /**
* @name BundleFlag * @name BundleFlag
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
enum BundleFlag { enum BundleFlag {
GET_BUNDLE_DEFAULT = 0x00000000, GET_BUNDLE_DEFAULT = 0x00000000,
@ -79,10 +77,9 @@ declare namespace bundle {
/** /**
* @name ExtensionFlag * @name ExtensionFlag
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
enum ExtensionFlag { enum ExtensionFlag {
GET_EXTENSION_INFO_DEFAULT = 0x00000000, GET_EXTENSION_INFO_DEFAULT = 0x00000000,
@ -94,10 +91,9 @@ declare namespace bundle {
/** /**
* @name ColorMode * @name ColorMode
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum ColorMode { export enum ColorMode {
AUTO_MODE = -1, AUTO_MODE = -1,
@ -108,10 +104,9 @@ declare namespace bundle {
/** /**
* @name GrantStatus * @name GrantStatus
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum GrantStatus { export enum GrantStatus {
PERMISSION_DENIED = -1, PERMISSION_DENIED = -1,
@ -121,37 +116,36 @@ declare namespace bundle {
/** /**
* @name AbilityType * @name AbilityType
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum AbilityType { export enum AbilityType {
/** /**
* @default Indicates an unknown ability type * @default Indicates an unknown ability type
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
UNKNOWN, UNKNOWN,
/** /**
* @default Indicates that the ability has a UI * @default Indicates that the ability has a UI
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
PAGE, PAGE,
/** /**
* @default Indicates that the ability does not have a UI * @default Indicates that the ability does not have a UI
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
SERVICE, SERVICE,
/** /**
* @default Indicates that the ability is used to provide data access services * @default Indicates that the ability is used to provide data access services
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
DATA, DATA,
} }
@ -159,10 +153,9 @@ declare namespace bundle {
/** /**
* @name AbilitySubType * @name AbilitySubType
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum AbilitySubType { export enum AbilitySubType {
UNSPECIFIED = 0, UNSPECIFIED = 0,
@ -172,37 +165,36 @@ declare namespace bundle {
/** /**
* @name DisplayOrientation * @name DisplayOrientation
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum DisplayOrientation { export enum DisplayOrientation {
/** /**
* @default Indicates that the system automatically determines the display orientation * @default Indicates that the system automatically determines the display orientation
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
UNSPECIFIED, UNSPECIFIED,
/** /**
* @default Indicates the landscape orientation * @default Indicates the landscape orientation
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
LANDSCAPE, LANDSCAPE,
/** /**
* @default Indicates the portrait orientation * @default Indicates the portrait orientation
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
PORTRAIT, PORTRAIT,
/** /**
* @default Indicates the page ability orientation is the same as that of the nearest ability in the stack * @default Indicates the page ability orientation is the same as that of the nearest ability in the stack
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
FOLLOW_RECENT, FOLLOW_RECENT,
} }
@ -210,23 +202,22 @@ declare namespace bundle {
/** /**
* @name LaunchMode * @name LaunchMode
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum LaunchMode { export enum LaunchMode {
/** /**
* @default Indicates that the ability has only one instance * @default Indicates that the ability has only one instance
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
SINGLETON = 0, SINGLETON = 0,
/** /**
* @default Indicates that the ability can have multiple instances * @default Indicates that the ability can have multiple instances
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
STANDARD = 1, STANDARD = 1,
} }
@ -234,70 +225,69 @@ declare namespace bundle {
/** /**
* @name ExtensionAbilityType * @name ExtensionAbilityType
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum ExtensionAbilityType { export enum ExtensionAbilityType {
/** /**
* @default Indicates extension info with type of form * @default Indicates extension info with type of form
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
FORM = 0, FORM = 0,
/** /**
* @default Indicates extension info with type of work schedule * @default Indicates extension info with type of work schedule
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
WORK_SCHEDULER = 1, WORK_SCHEDULER = 1,
/** /**
* @default Indicates extension info with type of input method * @default Indicates extension info with type of input method
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
INPUTMETHOD = 2, INPUTMETHOD = 2,
/** /**
* @default Indicates extension info with type of service * @default Indicates extension info with type of service
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
SERVICE = 3, SERVICE = 3,
/** /**
* @default Indicates extension info with type of accessibility * @default Indicates extension info with type of accessibility
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
ACCESSIBILITY = 4, ACCESSIBILITY = 4,
/** /**
* @default Indicates extension info with type of datashare * @default Indicates extension info with type of datashare
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
DATASHARE = 5, DATASHARE = 5,
/** /**
* @default Indicates extension info with type of fileshare * @default Indicates extension info with type of fileshare
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
FILESHARE = 6, FILESHARE = 6,
/** /**
* @default Indicates extension info with type of staticsubscriber * @default Indicates extension info with type of staticsubscriber
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
STATICSUBSCRIBER = 7, STATICSUBSCRIBER = 7,
/** /**
* @default Indicates extension info with type of wallpaper * @default Indicates extension info with type of wallpaper
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
WALLPAPER = 8, WALLPAPER = 8,
/** /**
* @default Indicates extension info with type of unspecified * @default Indicates extension info with type of unspecified
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
UNSPECIFIED = 9, UNSPECIFIED = 9,
} }
@ -305,23 +295,22 @@ declare namespace bundle {
/** /**
* @name BundleOptions * @name BundleOptions
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export interface BundleOptions { export interface BundleOptions {
/** /**
* @default Indicates the user id * @default Indicates the user id
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
userId?: number; userId?: number;
/** /**
* @default Indicates the network id * @default Indicates the network id
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
networkId?: string; networkId?: string;
} }
@ -329,10 +318,9 @@ declare namespace bundle {
/** /**
* @name InstallErrorCode * @name InstallErrorCode
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable
*/ */
export enum InstallErrorCode{ export enum InstallErrorCode{
SUCCESS = 0, SUCCESS = 0,
@ -373,9 +361,8 @@ declare namespace bundle {
/** /**
* Obtains bundleInfo based on bundleName, bundleFlags and options. * Obtains bundleInfo based on bundleName, bundleFlags and options.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the application bundle name to be queried. * @param bundleName Indicates the application bundle name to be queried.
* @param bundleFlags Indicates the application bundle flags to be queried. * @param bundleFlags Indicates the application bundle flags to be queried.
* @param options Indicates the bundle options object. * @param options Indicates the bundle options object.
@ -389,9 +376,8 @@ declare namespace bundle {
/** /**
* Obtains the interface used to install bundles. * Obtains the interface used to install bundles.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @return Returns the IBundleInstaller interface. * @return Returns the IBundleInstaller interface.
* @permission ohos.permission.INSTALL_BUNDLE * @permission ohos.permission.INSTALL_BUNDLE
*/ */
@ -401,9 +387,8 @@ declare namespace bundle {
/** /**
* Obtains based on a given bundle name. * Obtains based on a given bundle name.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the application bundle name to be queried. * @param bundleName Indicates the application bundle name to be queried.
* @param bundleFlags Indicates the flag used to specify information contained in the ApplicationInfo object * @param bundleFlags Indicates the flag used to specify information contained in the ApplicationInfo object
* that will be returned. * that will be returned.
@ -417,9 +402,8 @@ declare namespace bundle {
/** /**
* Checks whether a specified bundle has been granted a specific permission. * Checks whether a specified bundle has been granted a specific permission.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the name of the bundle to check. * @param bundleName Indicates the name of the bundle to check.
* @param permission Indicates the permission to check. * @param permission Indicates the permission to check.
* @return Returns 0 if the bundle has the permission; returns -1 otherwise. * @return Returns 0 if the bundle has the permission; returns -1 otherwise.
@ -430,9 +414,8 @@ declare namespace bundle {
/** /**
* Query the AbilityInfo by the given Want. * Query the AbilityInfo by the given Want.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param want Indicates the Want containing the application bundle name to * @param want Indicates the Want containing the application bundle name to
* be queried. * be queried.
* @param bundleFlags Indicates the flag used to specify information contained in the AbilityInfo objects that * @param bundleFlags Indicates the flag used to specify information contained in the AbilityInfo objects that
@ -448,9 +431,8 @@ declare namespace bundle {
/** /**
* Obtains BundleInfo of all bundles available in the system. * Obtains BundleInfo of all bundles available in the system.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundlelFlag Indicates the flag used to specify information contained in the BundleInfo that will be * @param bundlelFlag Indicates the flag used to specify information contained in the BundleInfo that will be
* returned. * returned.
* @param userId Indicates the user id. * @param userId Indicates the user id.
@ -464,9 +446,8 @@ declare namespace bundle {
/** /**
* Obtains information about all installed applications of a specified user. * Obtains information about all installed applications of a specified user.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleFlags Indicates the flag used to specify information contained in the ApplicationInfo objects * @param bundleFlags Indicates the flag used to specify information contained in the ApplicationInfo objects
* that will be returned. * that will be returned.
* @param userId Indicates the user ID. * @param userId Indicates the user ID.
@ -479,9 +460,8 @@ declare namespace bundle {
/** /**
* Obtains information about an application bundle contained in an ohos Ability Package (HAP). * Obtains information about an application bundle contained in an ohos Ability Package (HAP).
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param hapFilePath Indicates the path storing the HAP. The path should be the relative path to the data * @param hapFilePath Indicates the path storing the HAP. The path should be the relative path to the data
* directory of the current application. * directory of the current application.
* @param bundleFlags Indicates the flag used to specify information contained in the BundleInfo object to be * @param bundleFlags Indicates the flag used to specify information contained in the BundleInfo object to be
@ -499,9 +479,8 @@ declare namespace bundle {
* #ACTION_HOME and #ENTITY_HOME Want * #ACTION_HOME and #ENTITY_HOME Want
* filters set in the application's <b>config.json</b> file. * filters set in the application's <b>config.json</b> file.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the bundle name of the application. * @param bundleName Indicates the bundle name of the application.
* @return Returns the Want for starting the application's main ability if any; returns null if * @return Returns the Want for starting the application's main ability if any; returns null if
* the given bundle does not exist or does not contain any main ability. * the given bundle does not exist or does not contain any main ability.
@ -513,9 +492,8 @@ declare namespace bundle {
/** /**
* Obtains information about the shortcuts of the application. * Obtains information about the shortcuts of the application.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the bundle name of the application. * @param bundleName Indicates the bundle name of the application.
* @return Returns a list of ShortcutInfo objects containing shortcut information about the application. * @return Returns a list of ShortcutInfo objects containing shortcut information about the application.
* @permission ohos.permission.MANAGE_SHORTCUTS * @permission ohos.permission.MANAGE_SHORTCUTS
@ -526,9 +504,8 @@ declare namespace bundle {
/** /**
* get module usage record list in descending order of lastLaunchTime. * get module usage record list in descending order of lastLaunchTime.
* *
* @devices phone, tablet, tv, wearable
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param maxNum the return size of the records, must be in range of 1 to 1000. * @param maxNum the return size of the records, must be in range of 1 to 1000.
* @return Returns ability usage record list. * @return Returns ability usage record list.
* @systemapi hide this for inner system use * @systemapi hide this for inner system use
@ -539,9 +516,8 @@ declare namespace bundle {
/** /**
* Clears cache data of a specified application. * Clears cache data of a specified application.
* *
* @devices phone, tablet, tv, wearable, car
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the bundle name of the application whose cache data is to be cleared. * @param bundleName Indicates the bundle name of the application whose cache data is to be cleared.
* @param callback Indicates the callback to be invoked for returning the operation result. * @param callback Indicates the callback to be invoked for returning the operation result.
* @permission ohos.permission.REMOVE_CACHE_FILES * @permission ohos.permission.REMOVE_CACHE_FILES
@ -553,9 +529,8 @@ declare namespace bundle {
/** /**
* Sets whether to enable a specified application. * Sets whether to enable a specified application.
* *
* @devices phone, tablet, tv, wearable, car
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the bundle name of the application. * @param bundleName Indicates the bundle name of the application.
* @param isEnabled Specifies whether to enable the application. The value true means to enable it, and the * @param isEnabled Specifies whether to enable the application. The value true means to enable it, and the
* value false means to disable it. * value false means to disable it.
@ -568,9 +543,8 @@ declare namespace bundle {
/** /**
* Sets whether to enable a specified ability. * Sets whether to enable a specified ability.
* *
* @devices phone, tablet, tv, wearable, car
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param abilityInfo Indicates information about the ability to set. * @param abilityInfo Indicates information about the ability to set.
* @param isEnabled Specifies whether to enable the ability. The value true means to enable it, and the * @param isEnabled Specifies whether to enable the ability. The value true means to enable it, and the
* value false means to disable it.. * value false means to disable it..
@ -583,9 +557,8 @@ declare namespace bundle {
/** /**
* Query extension info of by utilizing a Want. * Query extension info of by utilizing a Want.
* *
* @devices phone, tablet, tv, wearable, car
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param want Indicates the Want containing the application bundle name to be queried. * @param want Indicates the Want containing the application bundle name to be queried.
* @param extensionFlags Indicates the flag used to specify information contained in the ExtensionInfo objects that * @param extensionFlags Indicates the flag used to specify information contained in the ExtensionInfo objects that
* will be returned. * will be returned.
@ -600,9 +573,8 @@ declare namespace bundle {
/** /**
* Get the permission details by permissionName. * Get the permission details by permissionName.
* *
* @devices phone, tablet, tv, wearable, car
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param permissionName Indicates permission name. * @param permissionName Indicates permission name.
* @return Returns permissionDef object. * @return Returns permissionDef object.
* @permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED * @permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
@ -612,4 +584,4 @@ declare namespace bundle {
function getPermissionDef(permissionName: string): Promise<PermissionDef>; function getPermissionDef(permissionName: string): Promise<PermissionDef>;
} }
export default bundle; export default bundle;

View File

@ -22,8 +22,7 @@ import { ShortcutInfo } from './bundle/shortcutInfo';
* inner bundle manager. * inner bundle manager.
* @name innerBundleManager * @name innerBundleManager
* @since 8 * @since 8
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable
* @permission NA * @permission NA
* @systemapi Hide this for inner system use * @systemapi Hide this for inner system use
*/ */
@ -32,9 +31,8 @@ declare namespace innerBundleManager {
/** /**
* Obtains based on a given bundleName and userId. * Obtains based on a given bundleName and userId.
* *
* @devices phone, tablet, tv, wearable
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the application bundle name to be queried. * @param bundleName Indicates the application bundle name to be queried.
* @param userId Indicates the id for the user. * @param userId Indicates the id for the user.
* @return Returns the LauncherAbilityInfo object. * @return Returns the LauncherAbilityInfo object.
@ -47,9 +45,8 @@ declare namespace innerBundleManager {
/** /**
* Register Callback. * Register Callback.
* *
* @devices phone, tablet, tv, wearable
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param type Indicates the command should be implement. * @param type Indicates the command should be implement.
* @param LauncherStatusCallback Indicates the callback to be register. * @param LauncherStatusCallback Indicates the callback to be register.
* @return Returns the result or error maeeage. * @return Returns the result or error maeeage.
@ -62,9 +59,8 @@ declare namespace innerBundleManager {
/** /**
* UnRegister Callback. * UnRegister Callback.
* *
* @devices phone, tablet, tv, wearable
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param type Indicates the command should be implement. * @param type Indicates the command should be implement.
* @return Returns the result or error maeeage. * @return Returns the result or error maeeage.
* @permission ohos.permission.LISTEN_BUNDLE_CHANGE * @permission ohos.permission.LISTEN_BUNDLE_CHANGE
@ -76,9 +72,8 @@ declare namespace innerBundleManager {
/** /**
* Obtains based on a given userId. * Obtains based on a given userId.
* *
* @devices phone, tablet, tv, wearable
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param userId Indicates the id for the user. * @param userId Indicates the id for the user.
* @return Returns the LauncherAbilityInfo object. * @return Returns the LauncherAbilityInfo object.
* @permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED * @permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
@ -90,9 +85,8 @@ declare namespace innerBundleManager {
/** /**
* Obtains based on a given bundleName. * Obtains based on a given bundleName.
* *
* @devices phone, tablet, tv, wearable
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @param bundleName Indicates the application bundle name to be queried. * @param bundleName Indicates the application bundle name to be queried.
* @return Returns the LauncherShortcutInfo object. * @return Returns the LauncherShortcutInfo object.
* @permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED * @permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
@ -102,4 +96,4 @@ declare namespace innerBundleManager {
function getShortcutInfos(bundleName : string) : Promise<Array<ShortcutInfo>>; function getShortcutInfos(bundleName : string) : Promise<Array<ShortcutInfo>>;
} }
export default innerBundleManager; export default innerBundleManager;

21
api/@ohos.zlib.d.ts vendored
View File

@ -19,10 +19,9 @@ declare namespace zlib {
/** /**
* @name ErrorCode * @name ErrorCode
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
*/ */
export enum ErrorCode { export enum ErrorCode {
ERROR_CODE_OK = 0, ERROR_CODE_OK = 0,
@ -32,10 +31,9 @@ declare namespace zlib {
/** /**
* @name CompressLevel * @name CompressLevel
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
*/ */
export enum CompressLevel { export enum CompressLevel {
COMPRESS_LEVEL_NO_COMPRESSION = 0, COMPRESS_LEVEL_NO_COMPRESSION = 0,
@ -47,10 +45,9 @@ declare namespace zlib {
/** /**
* @name CompressStrategy * @name CompressStrategy
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
*/ */
export enum CompressStrategy { export enum CompressStrategy {
COMPRESS_STRATEGY_DEFAULT_STRATEGY = 0, COMPRESS_STRATEGY_DEFAULT_STRATEGY = 0,
@ -63,10 +60,9 @@ declare namespace zlib {
/** /**
* @name MemLevel * @name MemLevel
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
*/ */
export enum MemLevel { export enum MemLevel {
MEM_LEVEL_MIN = 1, MEM_LEVEL_MIN = 1,
@ -77,10 +73,9 @@ declare namespace zlib {
/** /**
* @name Options * @name Options
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @import NA * @import NA
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
*/ */
interface Options { interface Options {
level?: CompressLevel; level?: CompressLevel;
@ -91,9 +86,8 @@ declare namespace zlib {
/** /**
* Compress the specified file. * Compress the specified file.
* *
* @devices phone, tablet, tv, wearable, car
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @param inFile Indicates the path of the file to be compressed. * @param inFile Indicates the path of the file to be compressed.
* @param outFile Indicates the path of the output compressed file. * @param outFile Indicates the path of the output compressed file.
* @return Returns error code. * @return Returns error code.
@ -103,9 +97,8 @@ declare namespace zlib {
/** /**
* Decompress the specified file. * Decompress the specified file.
* *
* @devices phone, tablet, tv, wearable, car
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.Zlib
* @param inFile Indicates the path of the file to be decompressed. * @param inFile Indicates the path of the file to be decompressed.
* @param outFile Indicates the path of the decompressed file. * @param outFile Indicates the path of the decompressed file.
* @return Returns error code. * @return Returns error code.

View File

@ -16,37 +16,36 @@
/** /**
* @name Indicates the defined permission details in file config.json * @name Indicates the defined permission details in file config.json
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
* @systemapi * @systemapi
*/ */
export interface PermissionDef { export interface PermissionDef {
/** /**
* @default Indicates the name of this permission * @default Indicates the name of this permission
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
permissionName: string; permissionName: string;
/** /**
* @default Indicates the bundleName of this permission * @default Indicates the bundleName of this permission
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
bundleName: string; bundleName: string;
/** /**
* @default Indicates the labelId of this permission * @default Indicates the labelId of this permission
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
labelId: number; labelId: number;
/** /**
* @default Indicates the descriptionId of this permission * @default Indicates the descriptionId of this permission
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
descriptionId: number; descriptionId: number;
} }

View File

@ -21,85 +21,84 @@ import bundle from './../@ohos.bundle';
/** /**
* @name Obtains configuration information about an ability * @name Obtains configuration information about an ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car
*/ */
export interface AbilityInfo { export interface AbilityInfo {
/** /**
* @default Indicates the name of the bundle containing the ability * @default Indicates the name of the bundle containing the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly bundleName: string; readonly bundleName: string;
/** /**
* @default Ability simplified class name * @default Ability simplified class name
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly name: string; readonly name: string;
/** /**
* @default Indicates the label of the ability * @default Indicates the label of the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly label: string; readonly label: string;
/** /**
* @default Describes the ability * @default Describes the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly description: string; readonly description: string;
/** /**
* @default Indicates the icon of the ability * @default Indicates the icon of the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly icon: string; readonly icon: string;
/** /**
* @default Indicates the label id of the ability * @default Indicates the label id of the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly labelId: number; readonly labelId: number;
/** /**
* @default Indicates the description id of the ability * @default Indicates the description id of the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly descriptionId: number; readonly descriptionId: number;
/** /**
* @default Indicates the icon id of the ability * @default Indicates the icon id of the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly iconId: number; readonly iconId: number;
/** /**
* @default Indicates the name of the .hap package to which the capability belongs * @default Indicates the name of the .hap package to which the capability belongs
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleName: string; readonly moduleName: string;
/** /**
* @default Process of ability, if user do not set it ,the value equal application process * @default Process of ability, if user do not set it ,the value equal application process
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly process: string; readonly process: string;
/** /**
* @default Info about which ability is this nick point to * @default Info about which ability is this nick point to
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly targetAbility: string; readonly targetAbility: string;
@ -107,7 +106,7 @@ export interface AbilityInfo {
/** /**
* @default Indicates the background service addressing a specific usage scenario * @default Indicates the background service addressing a specific usage scenario
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly backgroundModes: number; readonly backgroundModes: number;
@ -115,14 +114,14 @@ export interface AbilityInfo {
/** /**
* @default Indicates whether an ability can be called by other abilities * @default Indicates whether an ability can be called by other abilities
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isVisible: boolean; readonly isVisible: boolean;
/** /**
* @default Indicates whether the ability provides the embedded card capability * @default Indicates whether the ability provides the embedded card capability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly formEnabled: boolean; readonly formEnabled: boolean;
@ -130,7 +129,7 @@ export interface AbilityInfo {
/** /**
* @default Enumerates types of templates that can be used by an ability * @default Enumerates types of templates that can be used by an ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly type: bundle.AbilityType; readonly type: bundle.AbilityType;
@ -138,7 +137,7 @@ export interface AbilityInfo {
/** /**
* @default Enumerates the subType of templates used by an ability * @default Enumerates the subType of templates used by an ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly subType: bundle.AbilitySubType; readonly subType: bundle.AbilitySubType;
@ -146,7 +145,7 @@ export interface AbilityInfo {
/** /**
* @default Enumerates ability display orientations * @default Enumerates ability display orientations
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly orientation: bundle.DisplayOrientation; readonly orientation: bundle.DisplayOrientation;
@ -154,35 +153,35 @@ export interface AbilityInfo {
/** /**
* @default Enumerates ability launch modes * @default Enumerates ability launch modes
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly launchMode: bundle.LaunchMode; readonly launchMode: bundle.LaunchMode;
/** /**
* @default The permissions that others need to launch this ability * @default The permissions that others need to launch this ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly permissions: Array<string>; readonly permissions: Array<string>;
/** /**
* @default The device types that this ability can run on * @default The device types that this ability can run on
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly deviceTypes: Array<string>; readonly deviceTypes: Array<string>;
/** /**
* @default The device capability that this ability needs * @default The device capability that this ability needs
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly deviceCapabilities: Array<string>; readonly deviceCapabilities: Array<string>;
/** /**
* @default Indicates the permission required for reading ability data * @default Indicates the permission required for reading ability data
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly readPermission: string; readonly readPermission: string;
@ -190,7 +189,7 @@ export interface AbilityInfo {
/** /**
* @default Indicates the permission required for writing data to the ability * @default Indicates the permission required for writing data to the ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly writePermission: string; readonly writePermission: string;
@ -198,14 +197,14 @@ export interface AbilityInfo {
/** /**
* @default Obtains configuration information about an application * @default Obtains configuration information about an application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly applicationInfo: ApplicationInfo; readonly applicationInfo: ApplicationInfo;
/** /**
* @default Where form can be displayed * @default Where form can be displayed
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly formEntity: number; readonly formEntity: number;
@ -213,7 +212,7 @@ export interface AbilityInfo {
/** /**
* @default Minimum height of ability. * @default Minimum height of ability.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly minFormHeight: number; readonly minFormHeight: number;
@ -221,7 +220,7 @@ export interface AbilityInfo {
/** /**
* @default Default height of ability * @default Default height of ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly defaultFormHeight: number; readonly defaultFormHeight: number;
@ -229,7 +228,7 @@ export interface AbilityInfo {
/** /**
* @default Minimum width of ability * @default Minimum width of ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly minFormWidth: number; readonly minFormWidth: number;
@ -237,7 +236,7 @@ export interface AbilityInfo {
/** /**
* @default Default width of ability * @default Default width of ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly defaultFormWidth: number; readonly defaultFormWidth: number;
@ -245,7 +244,7 @@ export interface AbilityInfo {
/** /**
* @default Uri of ability * @default Uri of ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @FAModelOnly * @FAModelOnly
*/ */
readonly uri: string; readonly uri: string;
@ -253,21 +252,21 @@ export interface AbilityInfo {
/** /**
* @default Indicates the custom metadata of ability * @default Indicates the custom metadata of ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
customizeData: Map<string, Array<CustomizeData>>; customizeData: Map<string, Array<CustomizeData>>;
/** /**
* @default Indicates the metadata of ability * @default Indicates the metadata of ability
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly metaData: Array<CustomizeData>; readonly metaData: Array<CustomizeData>;
/** /**
* @default Indicates the metadata of ability * @default Indicates the metadata of ability
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* *
*/ */
readonly metadata: Array<Metadata>; readonly metadata: Array<Metadata>;
@ -275,7 +274,7 @@ export interface AbilityInfo {
/** /**
* @default Indicates the metadata of ability * @default Indicates the metadata of ability
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly enabled: boolean; readonly enabled: boolean;
} }

View File

@ -20,169 +20,169 @@ import { Metadata } from './metadata'
/** /**
* @name Obtains configuration information about an application * @name Obtains configuration information about an application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface ApplicationInfo { export interface ApplicationInfo {
/** /**
* @default Indicates the application name, which is the same as {@code bundleName} * @default Indicates the application name, which is the same as {@code bundleName}
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly name: string; readonly name: string;
/** /**
* @default Description of application * @default Description of application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly description: string; readonly description: string;
/** /**
* @default Indicates the description id of the application * @default Indicates the description id of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly descriptionId: number; readonly descriptionId: number;
/** /**
* @default Indicates whether the application is a system application * @default Indicates whether the application is a system application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly systemApp: boolean; readonly systemApp: boolean;
/** /**
* @default Indicates whether or not this application may be instantiated * @default Indicates whether or not this application may be instantiated
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly enabled: boolean; readonly enabled: boolean;
/** /**
* @default Indicates the label of the application * @default Indicates the label of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly label: string; readonly label: string;
/** /**
* @default Indicates the label id of the application * @default Indicates the label id of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly labelId: string; readonly labelId: string;
/** /**
* @default Indicates the icon of the application * @default Indicates the icon of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly icon: string; readonly icon: string;
/** /**
* @default Indicates the icon id of the application * @default Indicates the icon id of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly iconId: string; readonly iconId: string;
/** /**
* @default Process of application, if user do not set it ,the value equal bundleName * @default Process of application, if user do not set it ,the value equal bundleName
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly process: string; readonly process: string;
/** /**
* @default Indicates the running mode supported by the application * @default Indicates the running mode supported by the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly supportedModes: number; readonly supportedModes: number;
/** /**
* @default Indicates the path storing the module resources of the application * @default Indicates the path storing the module resources of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleSourceDirs: Array<string>; readonly moduleSourceDirs: Array<string>;
/** /**
* @default Indicates the permissions required for accessing the application. * @default Indicates the permissions required for accessing the application.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly permissions: Array<string>; readonly permissions: Array<string>;
/** /**
* @default Indicates module information about an application * @default Indicates module information about an application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleInfos: Array<ModuleInfo>; readonly moduleInfos: Array<ModuleInfo>;
/** /**
* @default Indicates the path where the {@code Entry.hap} file of the application is saved * @default Indicates the path where the {@code Entry.hap} file of the application is saved
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly entryDir: string; readonly entryDir: string;
/** /**
* @default Indicates the application source code path * @default Indicates the application source code path
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly codePath: string; readonly codePath: string;
/** /**
* @default Indicates the custom metadata of the application * @default Indicates the custom metadata of the application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
customizeData: Map<string, CustomizeData>; customizeData: Map<string, CustomizeData>;
/** /**
* @default Indicates the metadata of module * @default Indicates the metadata of module
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly metaData: Map<string, Array<CustomizeData>>; readonly metaData: Map<string, Array<CustomizeData>>;
/** /**
* @default Indicates the metadata of module * @default Indicates the metadata of module
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly metadata: Map<string, Array<Metadata>>; readonly metadata: Map<string, Array<Metadata>>;
/** /**
* @default Indicates whether or not this application may be removable * @default Indicates whether or not this application may be removable
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly removable: boolean; readonly removable: boolean;
/** /**
* @default Indicates the access token of the application * @default Indicates the access token of the application
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly accessTokenId: number; readonly accessTokenId: number;
/** /**
* @default Indicates the uid of the application * @default Indicates the uid of the application
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly uid: number; readonly uid: number;
/** /**
* @default Indicates entity type of the application * @default Indicates entity type of the application
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly entityType: string; readonly entityType: string;
} }

View File

@ -21,22 +21,22 @@ import { HapModuleInfo } from './hapModuleInfo';
/** /**
* @name The scene which is used * @name The scene which is used
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface UsedScene { export interface UsedScene {
/** /**
* @default Indicates the abilities that need the permission * @default Indicates the abilities that need the permission
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
abilities: Array<string>; abilities: Array<string>;
/** /**
* @default Indicates the time when the permission is used * @default Indicates the time when the permission is used
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
when: string; when: string;
} }
@ -44,29 +44,29 @@ export interface UsedScene {
/** /**
* @name Indicates the required permissions details defined in file config.json * @name Indicates the required permissions details defined in file config.json
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface ReqPermissionDetail { export interface ReqPermissionDetail {
/** /**
* @default Indicates the name of this required permissions * @default Indicates the name of this required permissions
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
name: string; name: string;
/** /**
* @default Indicates the reason of this required permissions * @default Indicates the reason of this required permissions
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
reason: string; reason: string;
/** /**
* @default Indicates the used scene of this required permissions * @default Indicates the used scene of this required permissions
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
usedScene: UsedScene; usedScene: UsedScene;
} }
@ -74,22 +74,22 @@ export interface ReqPermissionDetail {
/** /**
* @name Obtains configuration information about a bundle * @name Obtains configuration information about a bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface BundleInfo { export interface BundleInfo {
/** /**
* @default Indicates the name of this bundle * @default Indicates the name of this bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly name: string; readonly name: string;
/** /**
* @default Indicates the name of this original bundle * @default Indicates the name of this original bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly type: string; readonly type: string;
@ -97,7 +97,7 @@ export interface BundleInfo {
* @default Indicates the ID of the application to which this bundle belongs * @default Indicates the ID of the application to which this bundle belongs
* The application ID uniquely identifies an application. It is determined by the bundle name and signature * The application ID uniquely identifies an application. It is determined by the bundle name and signature
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly appId: string; readonly appId: string;
@ -106,147 +106,147 @@ export interface BundleInfo {
* The UID uniquely identifies an application. It is determined by the process and user IDs of the application * The UID uniquely identifies an application. It is determined by the process and user IDs of the application
* After an application is installed, its UID remains unchanged unless it is uninstalled and then reinstalled * After an application is installed, its UID remains unchanged unless it is uninstalled and then reinstalled
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly uid: number; readonly uid: number;
/** /**
* @default Indicates the hap install time * @default Indicates the hap install time
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly installTime: number; readonly installTime: number;
/** /**
* @default Indicates the hap update time * @default Indicates the hap update time
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly updateTime: number; readonly updateTime: number;
/** /**
* @default Obtains configuration information about an application * @default Obtains configuration information about an application
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly appInfo: ApplicationInfo; readonly appInfo: ApplicationInfo;
/** /**
* @default Obtains configuration information about an ability * @default Obtains configuration information about an ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly abilityInfo: Array<AbilityInfo>; readonly abilityInfo: Array<AbilityInfo>;
/** /**
* @default Indicates the required permissions name defined in file config.json * @default Indicates the required permissions name defined in file config.json
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly reqPermissions: Array<string>; readonly reqPermissions: Array<string>;
/** /**
* @default Indicates the required permissions details defined in file config.json * @default Indicates the required permissions details defined in file config.json
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly reqPermissionDetails: Array<ReqPermissionDetail>; readonly reqPermissionDetails: Array<ReqPermissionDetail>;
/** /**
* @default Describes the bundle vendor * @default Describes the bundle vendor
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly vendor: string; readonly vendor: string;
/** /**
* @default Indicates the version number of the bundle * @default Indicates the version number of the bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly versionCode: number; readonly versionCode: number;
/** /**
* @default Indicates the text description of the bundle version * @default Indicates the text description of the bundle version
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly versionName: string; readonly versionName: string;
/** /**
* @default Indicates the compatible version number of the bundle * @default Indicates the compatible version number of the bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly compatibleVersion: number; readonly compatibleVersion: number;
/** /**
* @default Indicates the target version number of the bundle * @default Indicates the target version number of the bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly targetVersion: number; readonly targetVersion: number;
/** /**
* @default Indicates is compress native libs * @default Indicates is compress native libs
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isCompressNativeLibs: boolean; readonly isCompressNativeLibs: boolean;
/** /**
* @default Obtains configuration information about an module * @default Obtains configuration information about an module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly hapModuleInfo: Array<HapModuleInfo>; readonly hapModuleInfo: Array<HapModuleInfo>;
/** /**
* @default Indicates entry module name * @default Indicates entry module name
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly entryModuleName: string; readonly entryModuleName: string;
/** /**
* @default Indicates the cpuAbi information of this bundle. * @default Indicates the cpuAbi information of this bundle.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly cpuAbi: string; readonly cpuAbi: string;
/** /**
* @default Indicates is silent installation * @default Indicates is silent installation
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isSilentInstallation: string; readonly isSilentInstallation: string;
/** /**
* @default Indicates the earliest historical version compatible with the bundle * @default Indicates the earliest historical version compatible with the bundle
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly minCompatibleVersionCode: number; readonly minCompatibleVersionCode: number;
/** /**
* @default Indicates whether free installation of the entry is supported * @default Indicates whether free installation of the entry is supported
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly entryInstallationFree: boolean; readonly entryInstallationFree: boolean;
/** /**
* @default Indicates the grant status of required permissions * @default Indicates the grant status of required permissions
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly reqPermissionStates: Array<number>; readonly reqPermissionStates: Array<number>;
/** /**
* @default Obtains configuration information about an ability * @default Obtains configuration information about an ability
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly extensionAbilityInfo: Array<ExtensionAbilityInfo>; readonly extensionAbilityInfo: Array<ExtensionAbilityInfo>;
} }

View File

@ -19,29 +19,29 @@ import bundle from './../@ohos.bundle';
/** /**
* @name Provides parameters required for installing or uninstalling an application. * @name Provides parameters required for installing or uninstalling an application.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface InstallParam { export interface InstallParam {
/** /**
* @default Indicates the user id * @default Indicates the user id
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
userId: number; userId: number;
/** /**
* @default Indicates the install flag * @default Indicates the install flag
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
installFlag: number; installFlag: number;
/** /**
* @default Indicates whether the param has data * @default Indicates whether the param has data
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
isKeepData: boolean; isKeepData: boolean;
} }
@ -49,23 +49,23 @@ export interface InstallParam {
/** /**
* @name Indicates the install or uninstall status * @name Indicates the install or uninstall status
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface InstallStatus { export interface InstallStatus {
/** /**
* @default Indicates the install or uninstall error code * @default Indicates the install or uninstall error code
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
status: bundle.InstallErrorCode; status: bundle.InstallErrorCode;
/** /**
* @default Indicates the install or uninstall result string message * @default Indicates the install or uninstall result string message
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
statusMessage: string; statusMessage: string;
} }
@ -73,17 +73,17 @@ export interface InstallStatus {
/** /**
* @name Offers install, upgrade, and remove bundles on the devices. * @name Offers install, upgrade, and remove bundles on the devices.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface BundleInstaller { export interface BundleInstaller {
/** /**
* Install an application in a HAP. * Install an application in a HAP.
* *
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable, car *
* @param bundleFilePaths Indicates the path where the bundle of the application is stored. The path should be the * @param bundleFilePaths Indicates the path where the bundle of the application is stored. The path should be the
* relative path to the data directory of the current application. * relative path to the data directory of the current application.
* @param installParam Indicates other parameters required for the installation. * @param installParam Indicates other parameters required for the installation.
@ -96,8 +96,8 @@ export interface BundleInstaller {
* Uninstall an application. * Uninstall an application.
* *
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable, car *
* @param bundleName Indicates the bundle name of the application to be uninstalled. * @param bundleName Indicates the bundle name of the application to be uninstalled.
* @param installParam Indicates other parameters required for the uninstallation. * @param installParam Indicates other parameters required for the uninstallation.
* @return InstallStatus * @return InstallStatus
@ -109,8 +109,8 @@ export interface BundleInstaller {
* recover an application. * recover an application.
* *
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable, car *
* @param bundleName Indicates the bundle name of the application to be recovered. * @param bundleName Indicates the bundle name of the application to be recovered.
* @param installParam Indicates other parameters required for the recover. * @param installParam Indicates other parameters required for the recover.
* @return InstallStatus * @return InstallStatus

View File

@ -19,8 +19,8 @@
* such as the add, update, remove. * such as the add, update, remove.
* @name Contains basic launcher status callback information, which uniquely identifies an LauncherStatusCallback * @name Contains basic launcher status callback information, which uniquely identifies an LauncherStatusCallback
* @since 8 * @since 8
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable, car *
* @permission ohos.permission.LISTEN_BUNDLE_CHANGE * @permission ohos.permission.LISTEN_BUNDLE_CHANGE
* @systemapi Hide this for inner system use * @systemapi Hide this for inner system use
*/ */
@ -28,9 +28,9 @@ declare interface BundleStatusCallback {
/** /**
* @name Obtains add callback about an launcherStatusCallback. * @name Obtains add callback about an launcherStatusCallback.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission ohos.permission.LISTEN_BUNDLE_CHANGE * @permission ohos.permission.LISTEN_BUNDLE_CHANGE
* @devices phone, tablet, tv, wearable, car *
* @systemapi Hide this for inner system use * @systemapi Hide this for inner system use
*/ */
add: (bundleName : string, userId: number) => void; add: (bundleName : string, userId: number) => void;
@ -38,9 +38,9 @@ declare interface BundleStatusCallback {
/** /**
* @name Obtains update callback about an launcherStatusCallback. * @name Obtains update callback about an launcherStatusCallback.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission ohos.permission.LISTEN_BUNDLE_CHANGE * @permission ohos.permission.LISTEN_BUNDLE_CHANGE
* @devices phone, tablet, tv, wearable, car *
* @systemapi Hide this for inner system use * @systemapi Hide this for inner system use
*/ */
update: (bundleName : string, userId: number) => void; update: (bundleName : string, userId: number) => void;
@ -48,9 +48,9 @@ declare interface BundleStatusCallback {
/** /**
* @name Obtains remove callback about an launcherStatusCallback. * @name Obtains remove callback about an launcherStatusCallback.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission ohos.permission.LISTEN_BUNDLE_CHANGE * @permission ohos.permission.LISTEN_BUNDLE_CHANGE
* @devices phone, tablet, tv, wearable, car *
* @systemapi Hide this for inner system use * @systemapi Hide this for inner system use
*/ */
remove: (bundleName : string, userId: number) => void; remove: (bundleName : string, userId: number) => void;

View File

@ -16,29 +16,29 @@
/** /**
* @name Indicates the custom metadata * @name Indicates the custom metadata
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface CustomizeData { export interface CustomizeData {
/** /**
* @default Indicates the custom metadata name * @default Indicates the custom metadata name
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
name: string; name: string;
/** /**
* @default Indicates the custom metadata value * @default Indicates the custom metadata value
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
value: string; value: string;
/** /**
* @default Indicates the custom metadata resource * @default Indicates the custom metadata resource
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
extra: string; extra: string;
} }

View File

@ -19,53 +19,53 @@
* such as the device ID, bundle name, and ability name. * such as the device ID, bundle name, and ability name.
* @name Contains basic Ability information, which uniquely identifies an ability * @name Contains basic Ability information, which uniquely identifies an ability
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable, car *
* @permission N/A * @permission N/A
*/ */
export interface ElementName { export interface ElementName {
/** /**
* device id * device id
* @default - * @default -
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
deviceId?: string; deviceId?: string;
/** /**
* bundle name * bundle name
* @default - * @default -
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
bundleName: string; bundleName: string;
/** /**
* ability name * ability name
* @default ability class name. * @default ability class name.
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
abilityName: string; abilityName: string;
/** /**
* uri * uri
* @default - * @default -
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
uri?: string; uri?: string;
/** /**
* shortName * shortName
* @default - * @default -
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
shortName?: string; shortName?: string;
} }

View File

@ -20,106 +20,106 @@ import bundle from './../@ohos.bundle';
/** /**
* @name Obtains extension information about a bundle * @name Obtains extension information about a bundle
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface ExtensionAbilityInfo { export interface ExtensionAbilityInfo {
/** /**
* @default Indicates the name of the bundle * @default Indicates the name of the bundle
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly bundleName: string; readonly bundleName: string;
/** /**
* @default Indicates the name of the module * @default Indicates the name of the module
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleName: string; readonly moduleName: string;
/** /**
* @default Indicates the name of the extension info * @default Indicates the name of the extension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly name: string; readonly name: string;
/** /**
* @default Indicates the label id of the entension info * @default Indicates the label id of the entension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly labelId: number; readonly labelId: number;
/** /**
* @default Indicates the description id of the entension info * @default Indicates the description id of the entension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly descriptionId: number; readonly descriptionId: number;
/** /**
* @default Indicates the icon id of the entension info * @default Indicates the icon id of the entension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly iconId: number; readonly iconId: number;
/** /**
* @default Indicates whether the entensionInfo can be visible or not * @default Indicates whether the entensionInfo can be visible or not
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isVisible: boolean; readonly isVisible: boolean;
/** /**
* @default Enumerates types of the entension info * @default Enumerates types of the entension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly extensionAbilityType: bundle.ExtensionAbilityType; readonly extensionAbilityType: bundle.ExtensionAbilityType;
/** /**
* @default The permissions that others need to use this extension info * @default The permissions that others need to use this extension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly permissions: Array<string>; readonly permissions: Array<string>;
/** /**
* @default Obtains configuration information about an application * @default Obtains configuration information about an application
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly applicationInfo: ApplicationInfo; readonly applicationInfo: ApplicationInfo;
/** /**
* @default Indicates the metadata of bundle * @default Indicates the metadata of bundle
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly metadata: Array<Metadata>; readonly metadata: Array<Metadata>;
/** /**
* @default Indicates the src language to express extension info * @default Indicates the src language to express extension info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly enabled: boolean; readonly enabled: boolean;
/** /**
* @default Indicates the read permission extension ability info * @default Indicates the read permission extension ability info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly readPermission: string; readonly readPermission: string;
/** /**
* @default Indicates the write permission of extension ability info * @default Indicates the write permission of extension ability info
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly writePermission: string; readonly writePermission: string;
} }

View File

@ -19,113 +19,113 @@ import { ExtensionAbilityInfo } from "./extensionAbilityInfo";
/** /**
* @name Obtains configuration information about an module. * @name Obtains configuration information about an module.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface HapModuleInfo { export interface HapModuleInfo {
/** /**
* @default Indicates the name of this hapmodule * @default Indicates the name of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly name: string; readonly name: string;
/** /**
* @default Describes the hapmodule * @default Describes the hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly description: string; readonly description: string;
/** /**
* @default Indicates the description of this hapmodule * @default Indicates the description of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly descriptionId: number; readonly descriptionId: number;
/** /**
* @default Indicates the icon of this hapmodule * @default Indicates the icon of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly icon: string; readonly icon: string;
/** /**
* @default Indicates the label of this hapmodule * @default Indicates the label of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly label: string; readonly label: string;
/** /**
* @default Indicates the label id of this hapmodule * @default Indicates the label id of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly labelId: number; readonly labelId: number;
/** /**
* @default Indicates the icon id of this hapmodule * @default Indicates the icon id of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly iconId: number; readonly iconId: number;
/** /**
* @default Indicates the background img of this hapmodule * @default Indicates the background img of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly backgroundImg: string; readonly backgroundImg: string;
/** /**
* @default Indicates the supported modes of this hapmodule * @default Indicates the supported modes of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly supportedModes: number; readonly supportedModes: number;
/** /**
* @default Indicates the req capabilities of this hapmodule * @default Indicates the req capabilities of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly reqCapabilities: Array<string>; readonly reqCapabilities: Array<string>;
/** /**
* @default The device types that this hapmodule can run on * @default The device types that this hapmodule can run on
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly deviceTypes: Array<string>; readonly deviceTypes: Array<string>;
/** /**
* @default Obtains configuration information about ability * @default Obtains configuration information about ability
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly abilityInfo: Array<AbilityInfo>; readonly abilityInfo: Array<AbilityInfo>;
/** /**
* @default Indicates the name of the .hap package to which the capability belongs * @default Indicates the name of the .hap package to which the capability belongs
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleName: string; readonly moduleName: string;
/** /**
* @default Indicates the main ability name of this hapmodule * @default Indicates the main ability name of this hapmodule
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly mainAbilityName: string; readonly mainAbilityName: string;
/** /**
* @default Indicates whether free installation of the hapmodule is supported * @default Indicates whether free installation of the hapmodule is supported
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly installationFree: boolean; readonly installationFree: boolean;
/** /**
* @default Indicates main elementName of the module * @default Indicates main elementName of the module
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly mainElementName: string; readonly mainElementName: string;
/** /**
* @default Obtains configuration information about extension ability * @default Obtains configuration information about extension ability
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly extensionAbilityInfo: Array<ExtensionAbilityInfo>; readonly extensionAbilityInfo: Array<ExtensionAbilityInfo>;
} }

View File

@ -19,8 +19,8 @@
* such as the application Info , elementName, labelId, iconId, userId, installTime. * such as the application Info , elementName, labelId, iconId, userId, installTime.
* @name Contains basic launcher Ability information, which uniquely identifies an LauncherAbilityInfo * @name Contains basic launcher Ability information, which uniquely identifies an LauncherAbilityInfo
* @since 8 * @since 8
* @sysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @devices phone, tablet, tv, wearable, car *
* @permission N/A * @permission N/A
* @systemapi Hide this for inner system use * @systemapi Hide this for inner system use
*/ */
@ -32,54 +32,54 @@ export interface LauncherAbilityInfo {
/** /**
* @name Obtains application info information about an launcher ability. * @name Obtains application info information about an launcher ability.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
readonly applicationInfo: ApplicationInfo; readonly applicationInfo: ApplicationInfo;
/** /**
* @name Obtains element name about an launcher ability. * @name Obtains element name about an launcher ability.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
readonly elementName : ElementName; readonly elementName : ElementName;
/** /**
* @name Obtains labelId about an launcher ability. * @name Obtains labelId about an launcher ability.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
readonly labelId: number; readonly labelId: number;
/** /**
* @name Obtains iconId about an launcher ability. * @name Obtains iconId about an launcher ability.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
readonly iconId: number; readonly iconId: number;
/** /**
* @name Obtains userId about an launcher ability. * @name Obtains userId about an launcher ability.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
readonly userId: number; readonly userId: number;
/** /**
* @name Obtains installTime about an launcher ability. * @name Obtains installTime about an launcher ability.
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
readonly installTime : number; readonly installTime : number;
} }

View File

@ -16,29 +16,29 @@
/** /**
* @name Indicates the Metadata * @name Indicates the Metadata
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface Metadata { export interface Metadata {
/** /**
* @default Indicates the metadata name * @default Indicates the metadata name
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
name: string; name: string;
/** /**
* @default Indicates the metadata value * @default Indicates the metadata value
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
value: string; value: string;
/** /**
* @default Indicates the metadata resource * @default Indicates the metadata resource
* @since 9 * @since 9
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
resource: string; resource: string;
} }

View File

@ -16,18 +16,18 @@
/** /**
* @name Stores module information about an application. * @name Stores module information about an application.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface ModuleInfo { export interface ModuleInfo {
/** /**
* The module name. * The module name.
* *
* @default Indicates the name of the .hap package to which the capability belongs * @default Indicates the name of the .hap package to which the capability belongs
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleName: string; readonly moduleName: string;
@ -35,9 +35,9 @@
* The module source path. * The module source path.
* *
* @default Indicates the module source dir of this module * @default Indicates the module source dir of this module
* @devices phone, tablet, tv, wearable, car *
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly moduleSourceDir: string; readonly moduleSourceDir: string;
} }

View File

@ -16,88 +16,88 @@
/** /**
* @name Stores FA usage information. * @name Stores FA usage information.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
* @systemapi hide this for inner system use * @systemapi hide this for inner system use
*/ */
export interface ModuleUsageRecord { export interface ModuleUsageRecord {
/** /**
* @default Indicates the name of the bundle containing the module * @default Indicates the name of the bundle containing the module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly bundleName: string; readonly bundleName: string;
/** /**
* @default Indicates the app label id of this module * @default Indicates the app label id of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly appLabelId: number; readonly appLabelId: number;
/** /**
* @default Indicates the name of this module * @default Indicates the name of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly name: string; readonly name: string;
/** /**
* @default Indicates the label id of this module * @default Indicates the label id of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly labelId: number; readonly labelId: number;
/** /**
* @default Indicates the description id of this module * @default Indicates the description id of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly descriptionId: number; readonly descriptionId: number;
/** /**
* @default Indicates the ability name of this module * @default Indicates the ability name of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly abilityName: string; readonly abilityName: string;
/** /**
* @default Indicates the ability label id of this module * @default Indicates the ability label id of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly abilityLabelId: number; readonly abilityLabelId: number;
/** /**
* @default Indicates the ability description id of this module * @default Indicates the ability description id of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly abilityDescriptionId: number; readonly abilityDescriptionId: number;
/** /**
* @default Indicates the ability icon id of this module * @default Indicates the ability icon id of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly abilityIconId: number; readonly abilityIconId: number;
/** /**
* @default Indicates the launched count of this module * @default Indicates the launched count of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly launchedCount: number; readonly launchedCount: number;
/** /**
* @default Indicates the last launch time of this module * @default Indicates the last launch time of this module
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly lastLaunchTime: number; readonly lastLaunchTime: number;
/** /**
* @default Indicates whether the module is removed * @default Indicates whether the module is removed
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isRemoved: boolean; readonly isRemoved: boolean;
/** /**
* @default Indicates whether free installation of the module is supported * @default Indicates whether free installation of the module is supported
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly installationFreeSupported: boolean; readonly installationFreeSupported: boolean;
} }

View File

@ -17,21 +17,21 @@
* @name Provides methods for obtaining information about the ability that a shortcut will start, including the target * @name Provides methods for obtaining information about the ability that a shortcut will start, including the target
* bundle name and ability class name. * bundle name and ability class name.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface ShortcutWant{ export interface ShortcutWant{
/** /**
* @default Indicates the target bundle of the shortcut want * @default Indicates the target bundle of the shortcut want
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly targetBundle: string; readonly targetBundle: string;
/** /**
* @default Indicates the target class of the shortcut want * @default Indicates the target class of the shortcut want
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly targetClass: string; readonly targetClass: string;
} }
@ -39,81 +39,81 @@
/** /**
* @name Provides information about a shortcut, including the shortcut ID and label. * @name Provides information about a shortcut, including the shortcut ID and label.
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
* @permission NA * @permission NA
* @devices phone, tablet, tv, wearable, car *
*/ */
export interface ShortcutInfo { export interface ShortcutInfo {
/** /**
* @default Indicates the ID of the application to which this shortcut belongs * @default Indicates the ID of the application to which this shortcut belongs
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly id: string; readonly id: string;
/** /**
* @default Indicates the name of the bundle containing the shortcut * @default Indicates the name of the bundle containing the shortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly bundleName: string; readonly bundleName: string;
/** /**
* @default Indicates the host ability of the shortcut * @default Indicates the host ability of the shortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly hostAbility: string; readonly hostAbility: string;
/** /**
* @default Indicates the icon of the shortcut * @default Indicates the icon of the shortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly icon: string; readonly icon: string;
/** /**
* @default Indicate s the icon id of the shortcut * @default Indicate s the icon id of the shortcut
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly iconId: number; readonly iconId: number;
/** /**
* @default Indicates the label of the shortcut * @default Indicates the label of the shortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly label: string; readonly label: string;
/** /**
* @default Indicates the label id of the shortcut * @default Indicates the label id of the shortcut
* @since 8 * @since 8
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly labelId: number; readonly labelId: number;
/** /**
* @default Indicates the disableMessage of the shortcut * @default Indicates the disableMessage of the shortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly disableMessage: string; readonly disableMessage: string;
/** /**
* @default Indicates the wants of the shortcut * @default Indicates the wants of the shortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly wants: Array<ShortcutWant>; readonly wants: Array<ShortcutWant>;
/** /**
* @default Indicates whether the shortcut is static * @default Indicates whether the shortcut is static
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isStatic?: boolean readonly isStatic?: boolean
/** /**
* @default Indicates whether the shortcut is homeshortcut * @default Indicates whether the shortcut is homeshortcut
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isHomeShortcut?: boolean; readonly isHomeShortcut?: boolean;
/** /**
* @default Indicates whether the shortcut is enabled * @default Indicates whether the shortcut is enabled
* @since 7 * @since 7
* @SysCap SystemCapability.Appexecfwk * @syscap SystemCapability.BundleManager.BundleFramework
*/ */
readonly isEnabled?: boolean; readonly isEnabled?: boolean;
} }