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.
1 parent 103ca89 commit 7c404daCopy full SHA for 7c404da
packages/typedoc-plugin-markdown/src/theme/context/partials/member.typeDeclarationTable.ts
@@ -119,7 +119,7 @@ export function typeDeclarationTable(
119
}),
120
);
121
}
122
- if ((declaration.type as any).declaration?.signatures?.length) {
+ if (declaration.type && (declaration.type as any).declaration?.signatures?.length) {
123
(declaration.type as any).declaration?.signatures.forEach((sig) => {
124
if (sig.comment) {
125
commentsOut.push(
0 commit comments