You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using jsdoc-to-markdown to generate the README file for electron-playwright-helpers. However the JSDoc definitions for returned Promise generics such as @returns {Promise<boolean>} leads to output which resembles this: => Promise.<boolean> note the "." before the bracket.
Is this a bug? Is there a way to remove the dot?
I've also added the @filfil and @reject values, but they're still not as clear as functionName(arg) => Promise<boolean> as a summary.
The text was updated successfully, but these errors were encountered:
I'm using jsdoc-to-markdown to generate the README file for electron-playwright-helpers. However the JSDoc definitions for returned Promise generics such as
@returns {Promise<boolean>}
leads to output which resembles this:=> Promise.<boolean>
note the "." before the bracket.Is this a bug? Is there a way to remove the dot?
I've also added the
@filfil
and@reject
values, but they're still not as clear asfunctionName(arg) => Promise<boolean>
as a summary.The text was updated successfully, but these errors were encountered: