mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
fix(scripts): skip over namespaces
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user