diff options
Diffstat (limited to 'includes/external/matrix/node_modules/matrix-widget-api/lib/interfaces/IJitsiWidgetData.d.ts')
-rw-r--r-- | includes/external/matrix/node_modules/matrix-widget-api/lib/interfaces/IJitsiWidgetData.d.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/includes/external/matrix/node_modules/matrix-widget-api/lib/interfaces/IJitsiWidgetData.d.ts b/includes/external/matrix/node_modules/matrix-widget-api/lib/interfaces/IJitsiWidgetData.d.ts new file mode 100644 index 0000000..695b322 --- /dev/null +++ b/includes/external/matrix/node_modules/matrix-widget-api/lib/interfaces/IJitsiWidgetData.d.ts @@ -0,0 +1,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; +} |