| 12345678910111213141516171819202122232425262728293031 | 
							- // @flow
 - 
 - /**
 -  * Placeholder for web share video input.
 -  * @type {string}
 -  */
 - export const defaultSharedVideoLink = 'Youtube link or direct video link';
 - 
 - /**
 -  * Mobile example for a youtube video
 -  */
 - export const defaultMobileSharedVideoLink = 'https://youtu.be/TB7LlM4erx8';
 - 
 - /**
 -  * Fixed name of the video player fake participant.
 -  * @type {string}
 -  */
 - export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
 - 
 - /**
 -  * Fixed name of the youtube player fake participant.
 -  * @type {string}
 -  */
 - export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
 - 
 - 
 - /**
 -  * Shared video command.
 -  * @type {string}
 -  */
 - export const SHARED_VIDEO = 'shared-video';
 
 
  |