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