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 type Box = { xStart: number; yStart: number; xEnd: number; yEnd: number };
|