-
-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function exported as variable despite @function tag #858
Comments
Hello @jerylvaz, in general, TypeDoc does not override type information from jsdoc tags. The |
This is definitely what I'd want. |
I'm running into this too. The documentation generated shows the whole function implementation when I set up memoization... /**
* Determines whether or not the given string can be considered a url
*/
export const isUrl = memoize(
function isUrl(str: string): boolean {
urlParser.href = str;
return !!(urlParser.host && urlParser.host !== window.location.host);
}
); It may be of benefit to officially support the |
v2.7.2
CLI options:
--readme ./README.md --mode file --includeDeclarations --excludePrivate --excludeExternals
The text was updated successfully, but these errors were encountered: