-
-
Notifications
You must be signed in to change notification settings - Fork 735
Differentiate an Interface and an Enum element with the same name. #262
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
Comments
I think this is a TypeScript issue and intentional. |
Huh, this is still not resolved since 2016? I have exactly the same problem. It is not reasonable to expect the "plain" |
How would you expect it to know which reflection to point to? Microsoft is working on defining a specific format for doc comments that would have a much more robust (and complex) symbol reference syntax. |
By using "much more robust (and complex) symbol reference syntax" of course. The first thing that comes into mind is something like: Any link to the Microsoft work? |
Here it is: microsoft/tsdoc#9 I think that TypeDoc should support the tsdoc syntax since it should be more standard (assuming it stabilizes) as opposed to making our own syntax. |
Agree. Seems they haven't decided yet? |
Hello,
I want to link an Interface in a methode definition like this :
The probleme is that I have an
Interface
named "FooBar", but also anEnum
containing an element named "FooBar", so the link refers to the Enum and not the Interface.Is there a way to manually specify that I want to refer to the Interface ?
The text was updated successfully, but these errors were encountered: