Is it possible to automatically generate parameter information in JSDoc style based on function implementation?
/**
* Assigns the project to a list of employees.
* @param {Object[]} employees - The employees responsible for the project.
* @param {string} employees[].name - The employee's name.
* @param {string} employees[].department - The employee's department.
*/
For example, in Microsoft Visual Studio you can simply type ///
above a function and it will create XML comments for you automatically.
/// <summary>
///
/// </summary>
/// <param name="input1"></param>
/// <param name="input2"></param>
/// <returns></returns>
public static decimal Add(string input1, string input2)