fix(scripts): skip over namespaces

This commit is contained in:
iCrawl
2023-04-09 19:32:41 +02:00
parent 250eccf118
commit 3ea4d26ee9

View File

@@ -115,7 +115,7 @@ export function visitNodes(item: ApiItem, tag: string) {
continue;
}
if (member.kind === ApiItemKind.Constructor) {
if (member.kind === ApiItemKind.Constructor || member.kind === ApiItemKind.Namespace) {
continue;
}