/* * 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 { AbilityInfo } from './abilityInfo'; /** * Obtains configuration information about a module. * * @typedef HapModuleInfo * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 * @useinstead ohos.bundle.bundleManager.HapModuleInfo */ export interface HapModuleInfo { /** * @default Indicates the name of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly name: string; /** * @default Describes the hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly description: string; /** * @default Indicates the description of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly descriptionId: number; /** * @default Indicates the icon of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly icon: string; /** * @default Indicates the label of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly label: string; /** * @default Indicates the label id of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly labelId: number; /** * @default Indicates the icon id of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly iconId: number; /** * @default Indicates the background img of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly backgroundImg: string; /** * @default Indicates the supported modes of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly supportedModes: number; /** * @default Indicates the req capabilities of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly reqCapabilities: Array; /** * @default The device types that this hapmodule can run on * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly deviceTypes: Array; /** * @default Obtains configuration information about ability * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly abilityInfo: Array; /** * @default Indicates the name of the .hap package to which the capability belongs * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly moduleName: string; /** * @default Indicates the main ability name of this hapmodule * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly mainAbilityName: string; /** * @default Indicates whether free installation of the hapmodule is supported * @syscap SystemCapability.BundleManager.BundleFramework * @since 7 * @deprecated since 9 */ readonly installationFree: boolean; }