export interface Params { bluetoothAddress: string; } /** * * @name pairAndConnectBluetoothDevices * @title 配对型连接蓝牙 * @param {string} bluetoothAddress - 通过蓝牙打印的打印机mac地址 * @return {string} code - 200:成功 | 404:失败 * @return {string} msg - 响应信息 * @return {Object} data - 响应数据 * @return {unknown} data - 响应数据 * @since 4.10.0 * @device Android * @fragment featch(params, callback) { const { bluetoothAddress } = params return suplink.pairAndConnectBluetoothDevices({ bluetoothAddress }) } * @example * import { pairAndConnectBluetoothDevices } from '@suplink/jssdk'; * * pairAndConnectBluetoothDevices().then((res) => console.log(res)) */ export default function pairAndConnectBluetoothDevices(params: Params): Promise>;