interface_sdk-js/api/@ohos.wifiManagerExt.d.ts
wangcaoyu1 c115ba985c 去除kit标签中间空格,添加kits文件kit标签
Signed-off-by: wangcaoyu1 <wangcaoyu@huawei.com>
2024-01-08 15:26:47 +08:00

154 lines
5.0 KiB
TypeScript

/*
* Copyright (C) 2022 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 ConnectivityKit
*/
import { AsyncCallback, Callback } from './@ohos.base';
/**
* Provides extended methods to operate or manage Wi-Fi.
*
* <p>The APIs involved in this file are non-general APIs.
* These extended APIs are only used by some product types, such as routers.
* Common products should not use these APIs.</p>
*
* @namespace wifiManagerExt
* @since 9
*/
declare namespace wifiManagerExt {
/**
* Enable Wi-Fi hotspot function.
* This method is asynchronous. After the Wi-Fi hotspot is enabled, Wi-Fi may be disabled.
* @permission ohos.permission.MANAGE_WIFI_HOTSPOT_EXT
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
* @deprecated since 10
*/
function enableHotspot(): void;
/**
* Disable Wi-Fi hotspot function.
* If Wi-Fi is enabled after the Wi-Fi hotspot is disabled, Wi-Fi may be re-enabled.
* @permission ohos.permission.MANAGE_WIFI_HOTSPOT_EXT
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
* @deprecated since 10
*/
function disableHotspot(): void;
/**
* Obtains the supported power Mode.
* @permission ohos.permission.GET_WIFI_INFO
* @returns { Promise<Array<PowerMode>> } Returns a list of application PowerMode.
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getSupportedPowerMode(): Promise<Array<PowerMode>>;
/**
* Obtains the supported power Mode.
* @permission ohos.permission.GET_WIFI_INFO
* @param { AsyncCallback<Array<PowerMode>> } callback - the callback of model.
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getSupportedPowerMode(callback: AsyncCallback<Array<PowerMode>>): void;
/**
* Obtains the current Wi-Fi power mode.
* @permission ohos.permission.GET_WIFI_INFO
* @returns { Promise<PowerMode> }
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getPowerMode(): Promise<PowerMode>;
/**
* Obtains the current Wi-Fi power mode.
* @permission ohos.permission.GET_WIFI_INFO
* @param { AsyncCallback<PowerMode> } callback - the callback of model
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getPowerMode(callback: AsyncCallback<PowerMode>): void;
/**
* Set the current Wi-Fi power mode.
* @permission ohos.permission.MANAGE_WIFI_HOTSPOT_EXT
* @param { PowerMode } model --Wi-Fi power mode.
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
* @deprecated since 10
*/
function setPowerMode(mode: PowerMode): void;
/**
* The power Mode enumeration.
*
* @enum { number } PowerMode
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
export enum PowerMode {
/**
* Sleeping Mode.
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @since 9
*/
SLEEPING = 0,
/**
* General Mode.
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @since 9
* */
GENERAL = 1,
/**
* Through wall Mode.
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @since 9
* */
THROUGH_WALL = 2,
}
}
export default wifiManagerExt;