interface Params { BTAddress: string; } /** * * @name connectExpertByBluetooth * @title 通过蓝牙连接expert无线传感器 * @param {string} BTAddress - 需要连接的设备蓝牙地址 * @return {string} code - 200:成功 | 404:失败 * @return {string} msg - 响应信息 * @return {unknown} data - 响应数据 * @since 4.17.0 * @fragment featch(params, callback) { const { BTAddress } = params return suplink.connectExpertByBluetooth({ BTAddress }) } * @example * import { connectExpertByBluetooth } from '@suplink/jssdk'; * * connectExpertByBluetooth().then((res) => console.log(res)) */ export default function connectExpertByBluetooth(params: Params): Promise>; export {};