all files / src/definitions/ StreamTypes.js

100% Statements 4/4
100% Branches 0/0
100% Functions 0/0
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36                                                               
/**
 * The available stream types
 * @typedef {Object} StreamTypes
 * @property {string} AUDIO='audio' - Audio communication service
 * @property {string} VIDEO='video' - Video communication service
 * @property {string} AUDIO_VIDEO='audio-video' - Audio and video communication service
 * @property {string} SCREEN_SHARING='screen-sharing' - Screen-sharing communication service
 */
 
/**
* Audio communication service
* @ignore
* @type {string}
*/
export const AUDIO = 'audio';
/**
* Video communication service
* @ignore
* @type {string}
*/
export const VIDEO = 'video';
/**
* Audio and video communication service
* @ignore
* @type {string}
*/
export const AUDIO_VIDEO = 'audio-video';
/**
* Screen-sharing service
* @ignore
* @type {string}
*/
export const SCREEN_SHARING = 'screen-sharing';
 
export default {AUDIO, VIDEO, AUDIO_VIDEO, SCREEN_SHARING};