We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
symbol.declarations
1 parent 81779eb commit be929bbCopy full SHA for be929bb
src/lib/converter/nodes/export.ts
@@ -23,7 +23,7 @@ export class ExportConverter extends ConverterNodeComponent<ts.ExportAssignment>
23
let type = context.getTypeAtLocation(node.expression);
24
symbol = type ? type.symbol : undefined;
25
}
26
- if (symbol) {
+ if (symbol && symbol.declarations) {
27
const project = context.project;
28
// if the symbol declarations are undefined due to an export, we skip it
29
// fixes https://github.com/TypeStrong/typedoc/issues/513
0 commit comments