theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
33 lines • 1.49 kB
TypeScript
/**
* Shooting method for My Settings mode.
* In RICOH THETA X, it is used outside of MySetting.
*
* Can be acquired and set only when in the Still image shooting mode
* and _function is the My Settings shooting function.
* Changing _function initializes the setting details to Normal shooting.
*
* For Theta X and Z1 only.
**/
export declare const ShootingMethodEnum: {
/** Normal shooting */
readonly NORMAL: "NORMAL";
/** Interval shooting */
readonly INTERVAL: "INTERVAL";
/** Move interval shooting (RICOH THETA Z1 firmware v1.50.1 or later, RICOH THETA X is not supported) */
readonly MOVE_INTERVAL: "MOVE_INTERVAL";
/** Fixed interval shooting (RICOH THETA Z1 firmware v1.50.1 or later, RICOH THETA X is not supported) */
readonly FIXED_INTERVAL: "FIXED_INTERVAL";
/** Multi bracket shooting */
readonly BRACKET: "BRACKET";
/** Interval composite shooting (RICOH THETA X is not supported) */
readonly COMPOSITE: "COMPOSITE";
/** Continuous shooting (RICOH THETA X or later) */
readonly CONTINUOUS: "CONTINUOUS";
/** TimeShift shooting (RICOH THETA X or later) */
readonly TIME_SHIFT: "TIME_SHIFT";
/** Burst shooting (RICOH THETA Z1 v2.10.1 or later, RICOH THETA X is not supported) */
readonly BURST: "BURST";
};
/** Type definition of ShootingMethodEnum */
export type ShootingMethodEnum = (typeof ShootingMethodEnum)[keyof typeof ShootingMethodEnum];
//# sourceMappingURL=option-shooting-method.d.ts.map