jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
'use strict';

/**
 * Set the list of users who are admins.
 *
 * @param {User} users - The users who will receive admin rights.
 */
function setAdmins(...users) {}

/**
 * Set the list of users who can access a widget.
 *
 * @param {Widget} widget - The widget.
 * @param {User} users - The users who will receive rights to access the widget.
 */
function setWidgetAccess(widget, ...users) {}

/**
 * Set the list of users who are managers.
 *
 * @param {User} users - The users who are managers.
 */
var setManagers = function(...users) {};