1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /**
| * 监听新设备事件 请求参数定义
| */
| export declare type IUnionOffBluetoothDeviceFoundParams = (e: IUnionOffBluetoothDeviceFoundResult) => void;
| /**
| * 监听新设备事件 返回结果定义
| */
| export interface IUnionOffBluetoothDeviceFoundResult {
| RSSI: number;
| name: string;
| deviceId: string;
| localName: string;
| deviceName: string;
| advertisData: string;
| }
| /**
| * 移除发现新设备事件
| * @apiName offBluetoothDeviceFound
| */
| export declare function offBluetoothDeviceFound$(params: IUnionOffBluetoothDeviceFoundParams): void;
| export default offBluetoothDeviceFound$;
|
|