documentation/test/fixture/nest_params.input.js
Tom MacWright 50aaf9d35b --watch and --serve flags
These new flags replace the functionality of
dev-documentation
2015-11-24 11:21:11 -05:00

20 lines
593 B
JavaScript

/**
* @param {Object[]} employees - The employees who are responsible for the project.
* @param {string} employees[].name - The name of an employee.
* @param {string} employees[].department - The employee's department.
*/
function foo(employee) {
}
/**
* @name foo
* @param {Object} options some options
* @param {number} options.much how much
* @param {number} bar something else
* @property {Object} theTime the current time
* @property {number} theTime.hours
* @property {number} theTime.minutes
* @property {number} theTime.seconds
* @returns {Object} foo something else
*/