blob: 695b322ee618ac7eafc34f7d1b5d4d857d7f3ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { IWidgetData } from "./IWidget";
/**
* Widget data for m.jitsi widgets.
*/
export interface IJitsiWidgetData extends IWidgetData {
/**
* The domain where the Jitsi Meet conference is being held.
*/
domain: string;
/**
* The conference ID (also known as the room name) where the conference is being held.
*/
conferenceId: string;
/**
* Optional. True to indicate that the conference should be without video, false
* otherwise (default).
*/
isAudioOnly?: boolean;
}
|