1/* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16import { paramMock } from "../../utils" 17import { AbilityInfo } from './abilityInfo'; 18import { ExtensionAbilityInfo } from './extensionAbilityInfo'; 19import { Metadata } from './metadata'; 20 21 22export const HapModuleInfo = { 23 name: "[PC preview] unknown name", 24 description: "[PC preview] unknown description", 25 descriptionId: "[PC preview] unknown descriptionId", 26 icon: "[PC preview] unknown icon", 27 label: "[PC preview] unknown label", 28 labelId: "[PC preview] unknown labelId", 29 iconId: "[PC preview] unknown iconId", 30 backgroundImg: "[PC preview] unknown backgroundImg", 31 supportedModes: "[PC preview] unknown supportedModes", 32 reqCapabilities: [paramMock.paramStringMock], 33 deviceTypes: [paramMock.paramStringMock], 34 abilityInfo: [AbilityInfo], 35 moduleName: "[PC preview] unknown moduleName", 36 mainAbilityName: "[PC preview] unknown mainAbilityName", 37 installationFree: "[PC preview] unknown installationFree", 38 mainElementName: "[PC preview] unknown mainElementName", 39 extensionAbilityInfo: [ExtensionAbilityInfo], 40 metadata: [Metadata], 41 hashValue: "[PC preview] unknown mainElementName", 42}