mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-23 07:10:52 +00:00
ed1d09f44c
Signed-off-by: xiekaiming <xiekaiming2@huawei.com>
45 lines
2.0 KiB
TypeScript
45 lines
2.0 KiB
TypeScript
/*
|
|
* Copyright (c) 2022-2023 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @kit MDMKit
|
|
*/
|
|
|
|
import accountManager from '@ohos.enterprise.accountManager';
|
|
import adminManager from '@ohos.enterprise.adminManager';
|
|
import applicationManager from '@ohos.enterprise.applicationManager';
|
|
import bluetoothManager from '@ohos.enterprise.bluetoothManager';
|
|
import browser from '@ohos.enterprise.browser';
|
|
import bundleManager from '@ohos.enterprise.bundleManager';
|
|
import dateTimeManager from '@ohos.enterprise.dateTimeManager';
|
|
import deviceControl from '@ohos.enterprise.deviceControl';
|
|
import deviceInfo from '@ohos.enterprise.deviceInfo';
|
|
import deviceSettings from '@ohos.enterprise.deviceSettings';
|
|
import EnterpriseAdminExtensionAbility from '@ohos.enterprise.EnterpriseAdminExtensionAbility';
|
|
import locationManager from '@ohos.enterprise.locationManager';
|
|
import networkManager from '@ohos.enterprise.networkManager';
|
|
import restrictions from '@ohos.enterprise.restrictions';
|
|
import securityManager from '@ohos.enterprise.securityManager';
|
|
import systemManager from '@ohos.enterprise.systemManager';
|
|
import usbManager from '@ohos.enterprise.usbManager';
|
|
import wifiManager from '@ohos.enterprise.wifiManager';
|
|
|
|
export {
|
|
EnterpriseAdminExtensionAbility, accountManager, adminManager, applicationManager, bluetoothManager, browser,
|
|
bundleManager, dateTimeManager, deviceControl, deviceInfo, deviceSettings, locationManager,
|
|
networkManager, restrictions, securityManager, systemManager, usbManager, wifiManager
|
|
};
|