1/* 2 * Copyright (c) 2024 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 */ 15export const oHGetDeviceType: () => string; 16export const oHGetManufacture: () => string; 17export const oHGetBrand: () => string; 18export const oHGetMarketName: () => string; 19export const oHGetProductSeries: () => string; 20export const oHGetProductModel: () => string; 21export const oHGetSoftwareModel: () => string; 22export const oHGetHardwareModel: () => string; 23export const oHGetBootloaderVersion: () => string; 24export const oHGetAbiList: () => string; 25export const oHGetSecurityPatchTag: () => string; 26export const oHGetDisplayVersion: () => string; 27export const oHGetIncrementalVersion: () => string; 28export const oHGetOsReleaseType: () => string; 29export const oHGetOSFullName: () => string; 30export const oHGetSdkApiVersion: () => number; 31export const oHGetFirstApiVersion: () => number; 32export const oHGetVersionId: () => string; 33export const oHGetBuildType: () => string; 34export const oHGetBuildUser: () => string; 35export const oHGetBuildHost: () => string; 36export const oHGetBuildTime: () => string; 37export const oHGetBuildRootHash: () => string; 38export const oHGetDistributionOSName: () => string; 39export const oHGetDistributionOSVersion: () => string; 40export const oHGetDistributionOSApiVersion: () => number; 41export const oHGetDistributionOSReleaseType: () => string; 42export const canIUse: () => number; 43export const canIUseOther: () => number;