Replies: 1 comment 4 replies
-
When you render the docs to HTML, TypeDoc includes breadcumbs at the top of each page which can be used to easily determine a declaration reference which will work, for example: https://gerritbirkeland.com/typedoc-packages-example/interfaces/_typedoc_lib.LibInt.html Has: The "Packages Example" is the name provided to typedoc for the entire docs, and isn't included in the declaration reference, so the reference is: If Given your example links, what will probably work is |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Howdy! This is a really sweet project, thanks to all you maintainers :)
I have a monorepo (i.e.
entryPointStrategy: packages
) where some packages import types from others. When I reference symbols of other packages that are imported, TypeDoc resolves the reference perfectly well:However, when the given symbol is not imported, I cannot at all seem to figure out how to properly spell out the declaration reference:
Mind you all of these imports are for local packages that are part of my monorepo--not 3rd party packages in node_modules (though I'm also curious how I would reference exports from those when not in the document scope as well!).
In case it's relevant, Typescript is resolving all of my monorepo imports using the Node resolutions I've defined in each package.json:
I would share my code but it's a private repo!
Beta Was this translation helpful? Give feedback.
All reactions