zhizhi/node_modules/dingtalk-jsapi/api/union/getBluetoothAdapterState.d.ts

22 lines
709 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName getBluetoothAdapterState
*/
export interface IUnionGetBluetoothAdapterStateParams extends ICommonAPIParams {
}
/**
*
* @apiName getBluetoothAdapterState
*/
export interface IUnionGetBluetoothAdapterStateResult {
available: boolean;
discovering: boolean;
}
/**
*
* @apiName getBluetoothAdapterState
*/
export declare function getBluetoothAdapterState$(params: IUnionGetBluetoothAdapterStateParams): Promise<IUnionGetBluetoothAdapterStateResult>;
export default getBluetoothAdapterState$;