theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
21 lines (18 loc) • 318 B
text/typescript
import type { GpsInfo } from './gps-info';
/**
* Mutable values representing Theta status.
*/
export interface ThetaState2 {
/**
* gpsInfo set by API.
*/
externalGpsInfo: {
gpsInfo: GpsInfo
};
/**
* gpsInfo from the built-in GPS module.
*/
internalGpsInfo: {
gpsInfo: GpsInfo
};
};