react-native-ble-nitro
Version:
High-performance React Native BLE library built on Nitro Modules
9 lines • 420 B
TypeScript
import { HybridObject } from "react-native-nitro-modules";
import { BLEDevice, NativeBleNitro } from "./NativeBleNitro.nitro";
export interface NativeBleNitroFactory extends HybridObject<{
ios: 'swift';
android: 'kotlin';
}> {
create(nativeRestoreStateIdentifier?: string, restoreStateCallback?: (peripherals: BLEDevice[]) => void): NativeBleNitro;
}
//# sourceMappingURL=NativeBleNitroFactory.nitro.d.ts.map