123456789101112131415161718 |
- /* global module */
- /**
- * Enumeration of the video types
- * @type {{CAMERA: string, DESKTOP: string}}
- */
- const VideoType = {
- /**
- * The camera video type.
- */
- CAMERA: 'camera',
-
- /**
- * The desktop video type.
- */
- DESKTOP: 'desktop'
- };
-
- module.exports = VideoType;
|