interface Params { BTAddress: string; } interface Data { connectId: string; } /** * return * @typedef Data * @property {string} connectId - 连接id */ /** * * @name connectAS100ByBluetooth * @title 通过蓝牙连接点检仪 * @param {string} BTAddress - 需要连接的设备蓝牙地址 * @return {string} code - 200:成功 | 404:失败 * @return {string} msg - 响应信息 * @return {Data} data - 响应数据 * @since 4.11.0 * @fragment featch(params, callback) { const { BTAddress } = params return suplink.connectAS100ByBluetooth({ BTAddress }) } * @example * import { connectAS100ByBluetooth } from '@suplink/jssdk'; * * connectAS100ByBluetooth().then((res) => console.log(res)) */ export default function connectAS100ByBluetooth(params: Params): Promise>; export {};