-
-
Notifications
You must be signed in to change notification settings - Fork 750
Closed
Description
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:
// 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:
Same happens when re-exporting symbols imported from another file:
import { auth } from './auth/index';
declare namespace admin {
export { auth }
}Environment
- Typedoc version: v0.18.0
- TypeScript version: v3.9.6
- Node.js version: v10.22.0
- OS: Mac
Metadata
Metadata
Assignees
Labels
No labels
