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.
2 parents 103ca89 + 7c404da commit b18cd89Copy full SHA for b18cd89
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