react-native-ble-nitro
Version:
High-performance React Native BLE library built on Nitro Modules - drop-in replacement for react-native-ble-plx
10 lines (9 loc) • 353 B
TypeScript
import type { UUID } from '../specs/types';
/**
* Converts UUID to full 128bit, lowercase format which should be used to compare UUID values.
* This function maintains 100% compatibility with react-native-ble-plx
*
* @param uuid 16bit, 32bit or 128bit UUID.
* @returns 128bit lowercase UUID.
*/
export declare function fullUUID(uuid: UUID): UUID;