We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
type aliases same name values link anchor
Having this example TypeDoc generates documentation for value and type.
// index.ts export const Value = 2; export type Value = 2;
And then it should generate links to them which are different. For example: /docs/modules.html#Value.value and /docs/modules.html#Value.type
/docs/modules.html#Value.value
/docs/modules.html#Value.type
TypeDoc generates the same link for both which is /docs/modules.html#Value.value and thus points only to type alias which appears first on the page.
index.ts
typedoc index.ts
The text was updated successfully, but these errors were encountered:
I thought I fixed this like a year ago... that's annoying.
Sorry, something went wrong.
a429a02
No branches or pull requests
Search terms
type aliases same name values link anchor
Expected Behavior
Having this example TypeDoc generates documentation for value and type.
And then it should generate links to them which are different.
For example:
/docs/modules.html#Value.value
and/docs/modules.html#Value.type
Actual Behavior
TypeDoc generates the same link for both which is
/docs/modules.html#Value.value
and thus points only to type alias which appears first on the page.Steps to reproduce the bug
index.ts
.Environment
The text was updated successfully, but these errors were encountered: