UNPKG

theta-client-react-native

Version:

This library provides a way to control RICOH THETA using.

19 lines (16 loc) 427 B
/** * Power saving mode. * The current setting can be acquired by camera.getOptions, * and it can be changed by camera.setOptions. * * For Theta X only. **/ export const PowerSavingEnum = { /** Power saving mode ON */ ON: 'ON', /** Power saving mode OFF */ OFF: 'OFF', } as const; /** Type definition of PowerSavingEnum */ export type PowerSavingEnum = (typeof PowerSavingEnum)[keyof typeof PowerSavingEnum];