When working in C # using ReSharper + StyleCop, I can automatically generate basic documentation comments for methods that look something like this:
/// <summary> /// The login. /// </summary> /// <param name="returnUrl"> /// The return Url. /// </param> /// <returns> /// The <see cref="Task"/>. /// </returns>
after which I can add additional details.
Is there a similar tool for TypeScipt that will generate JSDoc comment sections so I can just fill in the details?
source share