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 1c6cfed commit e1d2be5Copy full SHA for e1d2be5
1 file changed
packages/ts-doc/src/parsers/DocParser.js
@@ -55,6 +55,10 @@ class DocParser {
55
if (symbol) {
56
const newSymbol = context.symbols.push(symbol);
57
58
+ if (newSymbol.skip || ["_default", "default"].includes(newSymbol.symbolName)) {
59
+ continue;
60
+ }
61
+
62
docFile.symbols.set(newSymbol.symbolName, newSymbol);
63
}
64
0 commit comments