UNPKG

theta-ble-client-react-native

Version:

This library provides a way to control RICOH THETA using

23 lines 431 B
import type { PeripheralDeviceStatusEnum } from '../values'; /** * Peripheral Device */ export interface PeripheralDevice { /** * Device name */ device: string; /** * MAC address */ macAddress: string; /** * Paired or not */ pairing: boolean; /** * State of connection */ status: PeripheralDeviceStatusEnum; } //# sourceMappingURL=peripheral-device.d.ts.map