When working in C# using ReSharper + StyleCop I can auto generate basic documentation comments for methods, which looks something like:
/// <summary>
/// The login.
/// </summary>
/// <param name="returnUrl">
/// The return Url.
/// </param>
/// <returns>
/// The <see cref="Task"/>.
/// </returns>
which I can then add extra detail into.
Is there a similar tool for TypeScipt which will generate the JSDoc comment sections so I can simply fill in the details?