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

29 lines
845 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName getBluetoothDevices
*/
export interface IUnionGetBluetoothDevicesParams extends ICommonAPIParams {
}
/**
*
* @apiName getBluetoothDevices
*/
export interface IUnionGetBluetoothDevicesResult {
devices: {
RSSI: number;
name: string;
deviceId: string;
localName: string;
deviceName: string;
advertisData: string;
manufacturerData: string;
}[];
}
/**
*
* @apiName getBluetoothDevices
*/
export declare function getBluetoothDevices$(params: IUnionGetBluetoothDevicesParams): Promise<IUnionGetBluetoothDevicesResult>;
export default getBluetoothDevices$;