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 {
17  getUpdateTimes,
18  getMenuInfo,
19  getHeaderDate,
20  getCityList,
21  addCity,
22  getCityListWeatherData,
23  getHoursData,
24  getWeekWeatherData,
25  getAirIndexData,
26  getLifeData,
27  getSideBg,
28  getBg
29} from './src/main/ets/mock/RequestData'
30
31export { MyDataSource } from './src/main/ets/model/BasicDataSource'
32
33export {
34  HeaderData,
35  CityListData,
36  Forecast,
37  AirIndex,
38  SuitData,
39  WeekWeather,
40  AirData,
41  City
42} from './src/main/ets/model/Main'
43
44export {
45  Logger
46} from './src/main/ets/util/Logger'
47
48export {
49  Style
50} from './src/main/ets/util/Style'