theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
19 lines (17 loc) • 438 B
text/typescript
/**
* USB connection of the camera.
*
* Default value is "MTP".
* After switching the setting value, reconnect the camera to USB to enable it.
*/
export const UsbConnectionEnum = {
/** Undefined value */
UNKNOWN: 'UNKNOWN',
/** MTP */
MTP: 'MTP',
/** MSC */
MSC: 'MSC',
} as const;
/** type definition of UsbConnectionEnum */
export type UsbConnectionEnum =
(typeof UsbConnectionEnum)[keyof typeof UsbConnectionEnum];