2020-08-11 22:32:55 +02:00
|
|
|
export enum LayoutMode {
|
|
|
|
// All videos are displayed on the right side of the screen. If there is a screen sharing, it is displayed in the middle.
|
|
|
|
Presentation = "Presentation",
|
|
|
|
// Videos take the whole page.
|
|
|
|
VideoChat = "VideoChat",
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum DivImportance {
|
|
|
|
// For screen sharing
|
|
|
|
Important = "Important",
|
|
|
|
// For normal video
|
|
|
|
Normal = "Normal",
|
|
|
|
}
|
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
export const ON_ACTION_TRIGGER_BUTTON = "onaction";
|
2020-08-24 14:19:36 +02:00
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
export const TRIGGER_WEBSITE_PROPERTIES = "openWebsiteTrigger";
|
|
|
|
export const TRIGGER_JITSI_PROPERTIES = "jitsiTrigger";
|
2021-01-25 13:18:57 +01:00
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
export const WEBSITE_MESSAGE_PROPERTIES = "openWebsiteTriggerMessage";
|
|
|
|
export const JITSI_MESSAGE_PROPERTIES = "jitsiTriggerMessage";
|
2021-01-25 12:21:40 +01:00
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
export const AUDIO_VOLUME_PROPERTY = "audioVolume";
|
|
|
|
export const AUDIO_LOOP_PROPERTY = "audioLoop";
|
2020-11-23 20:34:05 +01:00
|
|
|
|
2021-06-25 18:14:40 +02:00
|
|
|
export type Box = { xStart: number; yStart: number; xEnd: number; yEnd: number };
|