react-native-ble-manager
Version:
A BLE module for react native.
12 lines (11 loc) • 315 B
TypeScript
import { ConfigPlugin } from 'expo/config-plugins';
/**
* Apply BLE native configuration.
*/
declare const withBLE: ConfigPlugin<{
neverForLocation?: boolean;
bluetoothAlwaysPermission?: string | false;
companionDeviceEnabled?: boolean;
isBleRequired?: boolean;
} | void>;
export default withBLE;