Fix syntax of typing in protocol.js.

This commit is contained in:
Juliusz Chroboczek
2025-03-23 22:05:54 +01:00
parent 9617c68fd6
commit 48b9e82d3d
+8 -7
View File
@@ -1587,13 +1587,14 @@ Stream.prototype.setStatsInterval = function(ms) {
* any -> cancelled -> closed * any -> cancelled -> closed
* *
* *
* @parm {ServerConnection} sc * @param {ServerConnection} sc
* @parm {string} userid * @param {string} userid
* @parm {string} rid * @param {string} id
* @parm {boolean} up * @param {boolean} up
* @parm {string} username * @param {string} username
* @parm {string} mimetype * @param {string} name
* @parm {number} size * @param {string} mimetype
* @param {number} size
* @constructor * @constructor
*/ */
function TransferredFile(sc, userid, id, up, username, name, mimetype, size) { function TransferredFile(sc, userid, id, up, username, name, mimetype, size) {