Fix doc
This commit is contained in:
+4
-2
@@ -100,7 +100,8 @@ export default class WidgetUtils {
|
|||||||
* @param {string} widgetId The ID of the widget to wait for
|
* @param {string} widgetId The ID of the widget to wait for
|
||||||
* @param {boolean} add True to wait for the widget to be added,
|
* @param {boolean} add True to wait for the widget to be added,
|
||||||
* false to wait for it to be deleted.
|
* false to wait for it to be deleted.
|
||||||
* @returns {Promise} that resolves when the widget is available
|
* @returns {Promise} that resolves when the widget is the the
|
||||||
|
* requested state according to the `add` param
|
||||||
*/
|
*/
|
||||||
static waitForUserWidget(widgetId, add) {
|
static waitForUserWidget(widgetId, add) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@@ -146,7 +147,8 @@ export default class WidgetUtils {
|
|||||||
* @param {string} roomId The ID of the room to wait for the widget in
|
* @param {string} roomId The ID of the room to wait for the widget in
|
||||||
* @param {boolean} add True to wait for the widget to be added,
|
* @param {boolean} add True to wait for the widget to be added,
|
||||||
* false to wait for it to be deleted.
|
* false to wait for it to be deleted.
|
||||||
* @returns {Promise} that resolves when the widget is available
|
* @returns {Promise} that resolves when the widget is the the
|
||||||
|
* requested state according to the `add` param
|
||||||
*/
|
*/
|
||||||
static waitForRoomWidget(widgetId, roomId, add) {
|
static waitForRoomWidget(widgetId, roomId, add) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user