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
This is because TypeScript doesn't resolve that link.
The only reason that linking to other doesn't generate a warning is because TypeScript resolves it. TypeDoc's custom link resolution doesn't support resolving links to properties of type aliases.
In fact, while {@link Test.other} doesn't generate a warning, it also doesn't actually work. It will generate a link to Test.html#__type.other, but the __type.other anchor does not exist on the page. This needs to be fixed before the default issue.
Search terms
link, default
Expected Behavior
It should generate the docs.
Actual Behavior
It outputs:
Steps to reproduce the bug
package.json
file with the following contents:index.ts
file with the following contents:npm install --save-dev typedoc typescript npm exec typedoc index.ts
Environment
The text was updated successfully, but these errors were encountered: