/** * @see [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/api/iBeacon.html#wxgetbeaconsobject) */ export default function get_beacons(): Promise<{ beacons: { uuid?: string | undefined; major?: string | undefined; minor?: string | undefined; proximity: number; accuracy: number; rssi: number; }[]; errMsg?: string | undefined; }>;