zhizhi/node_modules/dingtalk-jsapi/api/union/startBluetoothDevicesDiscov...

23 lines
774 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName startBluetoothDevicesDiscovery
*/
export interface IUnionStartBluetoothDevicesDiscoveryParams extends ICommonAPIParams {
interval: number;
services: string[];
allowDuplicatesKey: boolean;
}
/**
*
* @apiName startBluetoothDevicesDiscovery
*/
export interface IUnionStartBluetoothDevicesDiscoveryResult {
}
/**
*
* @apiName startBluetoothDevicesDiscovery
*/
export declare function startBluetoothDevicesDiscovery$(params: IUnionStartBluetoothDevicesDiscoveryParams): Promise<IUnionStartBluetoothDevicesDiscoveryResult>;
export default startBluetoothDevicesDiscovery$;