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 16export class ConfigData { 17 18 TAG='Bluetooth_Test ' 19 20 WH_100_100 = '100%'; 21 WH_25_100 = '25%'; 22 WH_30_100 = '30%'; 23 WH_33_100 = '33%'; 24 WH_35_100 = '35%'; 25 WH_40_100 = '40%'; 26 WH_45_100 = '45%'; 27 WH_50_100 = '50%'; 28 WH_55_100 = '55%'; 29 WH_83_100 = '83%'; 30 WH_90_100 = '90%'; 31 32 value_20 = 20; 33 font_20 = 20; 34 35 MAX_LINES_1 = 1; 36 MAX_LINES_2 = 2; 37 MAX_LINES_3 = 3; 38 DURATION_TIME = 200; 39 FUNCTION_TYPE_HDC = 4; 40} 41 42let configData = new ConfigData(); 43export default configData as ConfigData;