theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
20 lines • 762 B
TypeScript
/**
* Shooting function.
* Shooting settings are retained separately for both the Still image shooting mode and Video shooting mode.
* Setting them at the same time as exposureDelay will result in an error.
*
* For
* - RICOH THETA X
* - RICOH THETA Z1
*/
export declare const ShootingFunctionEnum: {
/** Normal shooting function */
readonly NORMAL: "NORMAL";
/** Self-timer shooting function(RICOH THETA X is not supported.) */
readonly SELF_TIMER: "SELF_TIMER";
/** My setting shooting function */
readonly MY_SETTING: "MY_SETTING";
};
/** type definition of ShootingFunctionEnum */
export type ShootingFunctionEnum = (typeof ShootingFunctionEnum)[keyof typeof ShootingFunctionEnum];
//# sourceMappingURL=option-function.d.ts.map