feat(external-api) Add participants pane toggled event (#11718)

This commit is contained in:
Robert Pintilii
2022-06-21 14:23:33 +01:00
committed by GitHub
parent 0308ba71b1
commit d0790736db
4 changed files with 45 additions and 0 deletions

View File

@@ -1695,6 +1695,19 @@ class API {
});
}
/**
* Notify the external application that the state of the participants pane changed.
*
* @param {boolean} open - Wether the panel is open or not.
* @returns {void}
*/
notifyParticipantsPaneToggled(open) {
this._sendEvent({
name: 'participants-pane-toggled',
open
});
}
/**
* Disposes the allocated resources.
*