Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-08-31 10:11:08 +0300
committerJoas Schilling <coding@schilljs.com>2021-08-31 10:11:08 +0300
commit1674b09dfc0d6196d1aa14137f999fbe5b6b673f (patch)
treee459b0e5adbd901a0232e6e844fee224e7aeaa7b /src/utils/signaling.js
parent6b6778129ad5b357db284b570b841f605595767e (diff)
More doc fixes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/utils/signaling.js')
-rw-r--r--src/utils/signaling.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/signaling.js b/src/utils/signaling.js
index 7eba45581..bc6a46beb 100644
--- a/src/utils/signaling.js
+++ b/src/utils/signaling.js
@@ -72,7 +72,7 @@ const Signaling = {
}
/**
- * @param settings
+ * @param {object} settings The signaling settings
*/
function Base(settings) {
this.settings = settings
@@ -337,7 +337,7 @@ Signaling.Base.prototype.leaveCall = function(token, keepToken) {
// Connection to the internal signaling server provided by the app.
/**
- * @param settings
+ * @param {object} settings The signaling settings
*/
function Internal(settings) {
Signaling.Base.prototype.constructor.apply(this, arguments)
@@ -545,8 +545,8 @@ Signaling.Internal.prototype.sendPendingMessages = function() {
}
/**
- * @param settings
- * @param urls
+ * @param {object} settings The signaling settings
+ * @param {string|string[]} urls The url of the signaling server
*/
function Standalone(settings, urls) {
Signaling.Base.prototype.constructor.apply(this, arguments)