theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
17 lines (15 loc) • 307 B
text/typescript
/**
* Face detection
*
* For
* - RICOH THETA X
*/
export const FaceDetectEnum = {
/** Face detection ON */
ON: 'ON',
/** Face detection OFF */
OFF: 'OFF',
} as const;
/** type definition of FaceDetectEnum */
export type FaceDetectEnum =
(typeof FaceDetectEnum)[keyof typeof FaceDetectEnum];