UNPKG

@indoor-track/ibeacon

Version:

Uma biblioteca React Native que fornece APIs nativas para escanear, detectar e obter informações de dispositivos iBeacon via Bluetooth Low Energy...

20 lines 420 B
interface IbeaconScanResult { id: string; major: number; minor: number; txPower: number; rssi: number; distance: number; type: string; } interface ScanError { message: string; type: string; } export declare const useIbeaconScan: () => { results: IbeaconScanResult[]; error: ScanError | null; initialized: boolean; }; export {}; //# sourceMappingURL=useIbeaconScan.d.ts.map