theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
22 lines • 951 B
TypeScript
/** Length of standby time before the camera enters the sleep mode. */
export declare const SleepDelayEnum: {
/** Do not turn sleep mode. */
readonly DISABLE: "DISABLE";
/** sleep mode after 3 minutes.(180seconds) */
readonly SLEEP_DELAY_3M: "SLEEP_DELAY_3M";
/** sleep mode after 5 minutes.(300seconds) */
readonly SLEEP_DELAY_5M: "SLEEP_DELAY_5M";
/** sleep mode after 7 minutes.(420seconds) */
readonly SLEEP_DELAY_7M: "SLEEP_DELAY_7M";
/** sleep mode after 10 minutes.(600seconds) */
readonly SLEEP_DELAY_10M: "SLEEP_DELAY_10M";
};
/** type definition of SleepDelayEnum */
export type SleepDelayEnum = (typeof SleepDelayEnum)[keyof typeof SleepDelayEnum] | number;
/**
* Get time(seconds) from SleepDelayEnum
* @param offDelay enum of SleepDelay
* @returns time(seconds)
*/
export declare function sleepDelayToSeconds(sleepDelay: SleepDelayEnum): number;
//# sourceMappingURL=option-sleep-delay.d.ts.map