theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
17 lines (15 loc) • 446 B
text/typescript
/**
* BurstMode setting.
* When this is set to ON, burst shooting is enabled,
* and a screen dedicated to burst shooting is displayed in Live View.
*
* only For RICOH THETA Z1 firmware v2.10.1 or later
*/
export const BurstModeEnum = {
/** BurstMode ON */
ON: 'ON',
/** BurstMode OFF */
OFF: 'OFF',
} as const;
/** Type definition of BurstModeEnum */
export type BurstModeEnum = (typeof BurstModeEnum)[keyof typeof BurstModeEnum];