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 { LocalDiscoverySession } from './src/main/ets/common/LocalDiscoverySession'; 17export { P2PDiscovery } from './src/main/ets/common/discovery/P2pDiscovery'; 18export { P2PMonitor } from './src/main/ets/common/discovery/P2pMonitor'; 19export { MdnsDiscovery } from './src/main/ets/common/discovery/MdnsDiscovery'; 20export { PrintServiceAdapter } from './src/main/ets/common/PrintServiceAdapter'; 21export { Backend } from './src/main/ets/common/ipp/Backend'; 22export { CapabilitiesCache } from './src/main/ets/common/ipp/CapabilitiesCache'; 23export { WifiModel } from './src/main/ets/common/model/WifiModel'; 24export {WorkerUtil} from './src/main/ets/common/utils/WorkerUtil'; 25export {WorkerResponse, RequestCode, ResponseCode } from './src/main/ets/common/model/WorkerData'; 26export { NativeApi } from './src/main/ets/common/napi/NativeApi'; 27export {P2PDiscoveryChannel} from './src/main/ets/common/discovery/P2pDiscoveryChannel';