Browse Source

fix: use correct jsdoc types for params and methods

dev1
Paul Tiedtke 3 years ago
parent
commit
97deccaa02
2 changed files with 1 additions and 2 deletions
  1. 1
    1
      modules/statistics/CallStats.js
  2. 0
    1
      modules/statistics/SpeakerStatsCollector.js

+ 1
- 1
modules/statistics/CallStats.js View File

343
      * the <tt>userID</tt> aka endpoint ID, see CallStats docs for more info.
343
      * the <tt>userID</tt> aka endpoint ID, see CallStats docs for more info.
344
      * @param {string} options.userName the <tt>userName</tt> part of
344
      * @param {string} options.userName the <tt>userName</tt> part of
345
      * the <tt>userID</tt> aka display name, see CallStats docs for more info.
345
      * the <tt>userID</tt> aka display name, see CallStats docs for more info.
346
-     * @param {String} options.configParams the set of parameters
346
+     * @param {object} options.configParams the set of parameters
347
      * to enable/disable certain features in the library. See CallStats docs for more info.
347
      * to enable/disable certain features in the library. See CallStats docs for more info.
348
      *
348
      *
349
      */
349
      */

+ 0
- 1
modules/statistics/SpeakerStatsCollector.js View File

141
      *
141
      *
142
      * @returns {Object} The keys are the user ids and the values are the
142
      * @returns {Object} The keys are the user ids and the values are the
143
      * associated user's SpeakerStats model.
143
      * associated user's SpeakerStats model.
144
-     * @private
145
      */
144
      */
146
     getStats() {
145
     getStats() {
147
         return this.stats.users;
146
         return this.stats.users;

Loading…
Cancel
Save