When using C# with ReSharper and StyleCop, I am able to automatically generate basic documentation comments for methods. This includes sections such as:
/// <summary>
/// The login.
/// </summary>
/// <param name="returnUrl">
/// The return Url.
/// </param>
/// <returns>
/// The <see cref="Task"/>.
/// </returns>
After generating these, I can then add more specific information.
I am now wondering if there is a similar tool available for TypeScript that can automate the generation of JSDoc comment sections, allowing me to easily fill in the necessary details.