jiti-meet/react/features/recording/constants.js

13 lines
235 B
JavaScript
Raw Normal View History

// @flow
/**
* Expected supported recording types. JIBRI is known to support live streaming
* whereas JIRECON is for recording.
*
* @type {Object}
*/
export const RECORDING_TYPES = {
JIBRI: 'jibri',
JIRECON: 'jirecon'
};