We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
namespace, re-export
List re-exported symbols as members of the namespace.
Re-exported symbols are ignored.
Run tsdoc against the following input:
tsdoc
// index.d.ts interface Bar { prop: number; } declare namespace admin { export interface Foo { prop: string; } export { Bar } } export = admin;
Generated output only lists Foo for admin:
Foo
admin
Same happens when re-exporting symbols imported from another file:
import { auth } from './auth/index'; declare namespace admin { export { auth } }
The text was updated successfully, but these errors were encountered:
983c0e6
Fix published in v0.19.2, thanks for the reproduction!
Sorry, something went wrong.
No branches or pull requests
Search terms
namespace, re-export
Expected Behavior
List re-exported symbols as members of the namespace.
Actual Behavior
Re-exported symbols are ignored.
Steps to reproduce the bug
Run
tsdoc
against the following input:Generated output only lists
Foo
foradmin
:Same happens when re-exporting symbols imported from another file:
Environment
The text was updated successfully, but these errors were encountered: