mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2025-04-07 06:31:53 +00:00
189 lines
5.3 KiB
TypeScript
189 lines
5.3 KiB
TypeScript
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { ModuleInfo } from './moduleInfo';
|
|
import { CustomizeData } from './customizeData'
|
|
import { Metadata } from './metadata'
|
|
|
|
/**
|
|
* @name Obtains configuration information about an application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
* @permission NA
|
|
*
|
|
*/
|
|
export interface ApplicationInfo {
|
|
/**
|
|
* @default Indicates the application name, which is the same as {@code bundleName}
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly name: string;
|
|
|
|
/**
|
|
* @default Description of application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly description: string;
|
|
|
|
/**
|
|
* @default Indicates the description id of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly descriptionId: number;
|
|
|
|
/**
|
|
* @default Indicates whether the application is a system application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly systemApp: boolean;
|
|
|
|
/**
|
|
* @default Indicates whether or not this application may be instantiated
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly enabled: boolean;
|
|
|
|
/**
|
|
* @default Indicates the label of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly label: string;
|
|
|
|
/**
|
|
* @default Indicates the label id of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly labelId: string;
|
|
|
|
/**
|
|
* @default Indicates the icon of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly icon: string;
|
|
|
|
/**
|
|
* @default Indicates the icon id of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly iconId: string;
|
|
|
|
/**
|
|
* @default Process of application, if user do not set it ,the value equal bundleName
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly process: string;
|
|
|
|
/**
|
|
* @default Indicates the running mode supported by the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly supportedModes: number;
|
|
|
|
/**
|
|
* @default Indicates the path storing the module resources of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly moduleSourceDirs: Array<string>;
|
|
|
|
/**
|
|
* @default Indicates the permissions required for accessing the application.
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly permissions: Array<string>;
|
|
|
|
/**
|
|
* @default Indicates module information about an application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly moduleInfos: Array<ModuleInfo>;
|
|
|
|
/**
|
|
* @default Indicates the path where the {@code Entry.hap} file of the application is saved
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly entryDir: string;
|
|
|
|
/**
|
|
* @default Indicates the application source code path
|
|
* @since 8
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly codePath: string;
|
|
|
|
/**
|
|
* @default Indicates the custom metadata of the application
|
|
* @since 7
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
customizeData: Map<string, CustomizeData>;
|
|
|
|
/**
|
|
* @default Indicates the metadata of module
|
|
* @since 8
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly metaData: Map<string, Array<CustomizeData>>;
|
|
|
|
/**
|
|
* @default Indicates the metadata of module
|
|
* @since 9
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly metadata: Map<string, Array<Metadata>>;
|
|
|
|
/**
|
|
* @default Indicates whether or not this application may be removable
|
|
* @since 8
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly removable: boolean;
|
|
|
|
/**
|
|
* @default Indicates the access token of the application
|
|
* @since 8
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly accessTokenId: number;
|
|
|
|
/**
|
|
* @default Indicates the uid of the application
|
|
* @since 8
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly uid: number;
|
|
|
|
/**
|
|
* @default Indicates entity type of the application
|
|
* @since 8
|
|
* @syscap SystemCapability.BundleManager.BundleFramework
|
|
*/
|
|
readonly entityType: string;
|
|
}
|