theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
19 lines • 387 B
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;
};
}
//# sourceMappingURL=theta-state2.d.ts.map