UNPKG

theta-ble-client-react-native

Version:

This library provides a way to control RICOH THETA using

36 lines 846 B
/** * Capture mode. */ export declare const CaptureModeEnum: { /** * Undefined value */ readonly UNKNOWN: "UNKNOWN"; /** * Still image shooting mode. */ readonly IMAGE: "IMAGE"; /** * Movie shooting mode. */ readonly VIDEO: "VIDEO"; /** * Live streaming mode. */ readonly LIVE: "LIVE"; /** * Interval still image capture mode just for Theta SC2 and Theta SC2 for business */ readonly INTERVAL: "INTERVAL"; /** * Preset mode just for Theta SC2 and Theta SC2 for business */ readonly PRESET: "PRESET"; /** * WebRTC */ readonly WEB_RTC: "WEB_RTC"; }; /** type definition of CaptureModeEnum */ export type CaptureModeEnum = typeof CaptureModeEnum[keyof typeof CaptureModeEnum]; //# sourceMappingURL=capture-mode.d.ts.map