/* 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;