theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
31 lines • 1.34 kB
TypeScript
/** Capture Status constants */
export declare const CaptureStatusEnum: {
/** Undefined value */
readonly UNKNOWN: "UNKNOWN";
/** Performing continuously shoot */
readonly SHOOTING: "SHOOTING";
/** In standby */
readonly IDLE: "IDLE";
/** Self-timer is operating */
readonly SELF_TIMER_COUNTDOWN: "SELF_TIMER_COUNTDOWN";
/** Performing multi bracket shooting */
readonly BRACKET_SHOOTING: "BRACKET_SHOOTING";
/** Converting post file... */
readonly CONVERTING: "CONVERTING";
/** Performing timeShift shooting */
readonly TIME_SHIFT_SHOOTING: "TIME_SHIFT_SHOOTING";
/** Performing continuous shooting */
readonly CONTINUOUS_SHOOTING: "CONTINUOUS_SHOOTING";
/** Waiting for retrospective video... */
readonly RETROSPECTIVE_IMAGE_RECORDING: "RETROSPECTIVE_IMAGE_RECORDING";
/** Performing burst shooting */
readonly BURST_SHOOTING: "BURST_SHOOTING";
/**
* In the case of time-lag shooting by manual lens,
* set while waiting for the second shot to be taken after the first shot is completed.
*/
readonly TIME_SHIFT_SHOOTING_IDLE: "TIME_SHIFT_SHOOTING_IDLE";
};
/** type definition of CaptureStatusEnum */
export type CaptureStatusEnum = (typeof CaptureStatusEnum)[keyof typeof CaptureStatusEnum];
//# sourceMappingURL=capture-status.d.ts.map