1
Fork 0

Fix typing of userMessage value.

This commit is contained in:
Juliusz Chroboczek 2021-02-26 16:22:55 +01:00
parent ea321be17a
commit 016c321484
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ ServerConnection.prototype.userAction = function(kind, dest, value) {
*
* @param {string} kind - The kind of application-specific message.
* @param {string} dest - The id to send the message to, empty for broadcast.
* @param {string} [value] - An optional parameter.
* @param {unknown} [value] - An optional parameter.
* @param {boolean} [noecho] - If set, don't echo back the message to the sender.
*/
ServerConnection.prototype.userMessage = function(kind, dest, value, noecho) {