• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2023-2023 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 { SCHEME_IPP,
17  SCHEME_IPPS,
18  SERVICE_IPP,
19  SERVICE_IPPS,
20  EPSON_PRINTER,
21  BISHENG_PRINTER,
22  IPP_PORT,
23  IPP_PATH,
24  P2P_DISCOVERY_EVENT_ID,
25  MDNS_EMITTER_EVENT_ID,
26  WIFI_POWER_CLOSED,
27  P2P_DISCOVERY_DELAY } from './src/main/ets/model/PrintConstants'
28
29export { PrintMargin,
30  PrinterRange,
31  PreviewAttribute,
32  PrintResolution,
33  PrintPageSize,
34  PrinterCapability,
35  PrinterInfo,
36  PrintJob,
37  PrinterExtensionInfo,
38  PrinterState,
39  PrintJobState,
40  PrintJobSubState,
41  MessageEvent,
42  PrinterCapsOptions,
43  PrintJobOptions,
44  PrinterFoundType,
45  DateTimeFormat } from './src/main/ets/model/PrintBean'
46
47export { MediaSize, Size } from './src/main/ets/model/MediaSize'
48
49export { GlobalThisStorageKey } from './src/main/ets/model/GlobalThisStorageKey'
50
51export { GlobalThisHelper} from './src/main/ets/model/GlobalThisHelper'
52
53export { ErrorCode,
54  ErrorMessage,
55  CONNECTION_POP,
56  INIT_ERROR,
57  GET_CAPS_ERROR,
58  IPP_CONNECT_ERROR,
59  P2P_SERVICE_ERROR } from './src/main/ets/model/ErrorMessage'
60
61export { uuidGenerator } from './src/main/ets/utils/UuidGenerator'
62
63export { PrinterUtils } from './src/main/ets/utils/PrinterUtils'
64
65export { checkWifiEnable, checkPermission, requestPermission } from './src/main/ets/utils/PermissionUtils'
66
67export { MediaSizeUtil } from './src/main/ets/utils/MediaSizeUtil'
68
69export { Log } from './src/main/ets/utils/Log'
70
71export { DateUtils } from './src/main/ets/utils/DateUtils'
72
73export { ColorMode } from './src/main/ets/model/ColorMode'
74
75export { DuplexMode, DuplexModeCode } from './src/main/ets/model/DuplexMode'
76
77export { MediaTypes, MediaTypeCode } from './src/main/ets/model/MediaType'
78
79export { default } from './src/main/ets/utils/CheckEmptyUtils';
80
81export { CopyUtil } from './src/main/ets/utils/CopyUtil'
82
83export { RequestCode,
84  PrintErrorCode,
85  WindowErrorCode,
86  PrintRangeType,
87  PageDirection,
88  PrintQuality,
89  Constants,
90  AppStorageKeyName,
91  AppCommonEvent,
92  PreferencesKey,
93  MouseState,
94  MediaType,
95  Duplex,
96  ColorCode
97} from './src/main/ets/model/Constants'
98
99export { StringUtil } from './src/main/ets/utils/StringUtil'