Commit 016c3214 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typing of userMessage value.

parent ea321be1
...@@ -523,7 +523,7 @@ ServerConnection.prototype.userAction = function(kind, dest, value) { ...@@ -523,7 +523,7 @@ ServerConnection.prototype.userAction = function(kind, dest, value) {
* *
* @param {string} kind - The kind of application-specific message. * @param {string} kind - The kind of application-specific message.
* @param {string} dest - The id to send the message to, empty for broadcast. * @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. * @param {boolean} [noecho] - If set, don't echo back the message to the sender.
*/ */
ServerConnection.prototype.userMessage = function(kind, dest, value, noecho) { ServerConnection.prototype.userMessage = function(kind, dest, value, noecho) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment