UNPKG

theta-ble-client-react-native

Version:

This library provides a way to control RICOH THETA using

24 lines (20 loc) 431 B
/** * Peripheral device connection state */ export const PeripheralDeviceStatusEnum = { /** * Undefined value */ UNKNOWN: 'UNKNOWN', /** * Unconnected */ IDLE: 'IDLE', /** * Connected */ CONNECTED: 'CONNECTED', } as const; /** type definition of PeripheralDeviceStatusEnum */ export type PeripheralDeviceStatusEnum = typeof PeripheralDeviceStatusEnum[keyof typeof PeripheralDeviceStatusEnum];