GUACAMOLE-986: Update documentation of all parameters/returns to specify non-nullable and/or primitive types where appropriate.

This commit is contained in:
Michael Jumper
2021-12-18 19:03:52 -08:00
parent 7d92822441
commit 1ca1161a68
32 changed files with 1636 additions and 977 deletions

View File

@@ -27,6 +27,8 @@ describe("Guacamole.Event", function EventSpec() {
*
* @constructor
* @augments Guacamole.Event
* @param {object} value
* An arbitrary value to expose to the handler of the event.
*/
var TestEvent = function TestEvent(value) {
@@ -35,7 +37,7 @@ describe("Guacamole.Event", function EventSpec() {
/**
* An arbitrary value to expose to the handler of this event.
*
* @type {Object}
* @type {object}
*/
this.value = value;