tsdocs
tsdocs copied to clipboard
Support for `exports`
https://tsdocs.dev/search/docs/discord-api-types fails with a TypeDefinitionResolveError
, probably because the package doesn't actually expose top-level exports. It does however specify exports
in its package.json
. It would be cool if eg. https://tsdocs.dev/search/docs/discord-api-types/v10
worked
Same here: https://github.com/chubbyts/chubbyts-framework/blob/master/package.json#L52
Same here: https://tsdocs.dev/docs/signal-utils/0.12.2/index.html -- only shows the index module, but there are many more.
I've written a parser for exports before if you want to use it:
https://github.com/universal-ember/kolay/blob/main/src/plugins/helpers.js#L29
Example usage here: https://github.com/universal-ember/kolay/blob/main/src/plugins/api-docs/typedoc.js#L29