|
@@ -753,6 +753,18 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
|
753
|
753
|
return getCurrentDevices(this._transport);
|
754
|
754
|
}
|
755
|
755
|
|
|
756
|
+ /**
|
|
757
|
+ * Returns the current livestream url.
|
|
758
|
+ *
|
|
759
|
+ * @returns {Promise} - Resolves with the current livestream URL if exists, with
|
|
760
|
+ * undefined if not and rejects on failure.
|
|
761
|
+ */
|
|
762
|
+ getLivestreamUrl() {
|
|
763
|
+ return this._transport.sendRequest({
|
|
764
|
+ name: 'get-livestream-url'
|
|
765
|
+ });
|
|
766
|
+ }
|
|
767
|
+
|
756
|
768
|
/**
|
757
|
769
|
* Returns the conference participants information.
|
758
|
770
|
*
|