Skip to content

Commit dd3dbaa

Browse files
committed
jsdoc
1 parent 850b444 commit dd3dbaa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

babylon/js/client/vrspace.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,11 +370,11 @@ export class SessionData {
370370
* @param {String} json string representation of this object (passed along connection as user data)
371371
*/
372372
constructor(json) {
373-
/** Client id, long */
373+
/** @type {number} Client id, long */
374374
this.clientId = null;
375-
/** Session name, matches either world name for public world, or world token for private world */
375+
/** @type {string} Session name, matches either world name for public world, or world token for private world */
376376
this.name = null;
377-
/** Session type - 'main' or 'screen' */
377+
/** @type {string} Session type - 'main' or 'screen' */
378378
this.type = null;
379379
JSON.parse(json, (key,value)=>{
380380
this[key] = value;

0 commit comments

Comments
 (0)