Is there a way to generatate parameter information (jsdoc style) based on function implementation?
/**
* Assign the project to a list of employees.
* @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.
*/
I'll give you a for instance in a another editor. In Microsoft Visual Studio you can type ///
above a function and it will automatically stub out xml comments for you.
/// <summary>
///
/// </summary>
/// <param name="input1"></param>
/// <param name="input2"></param>
/// <returns></returns>
public static decimal Add(string input1, string input2)