mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Fix typing of userMessage value.
This commit is contained in:
parent
ea321be17a
commit
016c321484
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue