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 67987ad commit f9c126aCopy full SHA for f9c126a
examples/basic/src/hidden.ts
@@ -0,0 +1,10 @@
1
+/**
2
+ * This whole module is hidden in the generated documentation.
3
+ * @packageDocumentation
4
+ * @hidden
5
+ */
6
+
7
8
+ * Will not show up in the generated docs since the module is hidden.
9
10
+export const hidden = true;
src/lib/models/reflections/project.ts
@@ -207,6 +207,8 @@ export class ProjectReflection extends ContainerReflection {
207
for (const id of ids ?? []) {
208
this.symbolIdToReflectionIdMap.delete(id);
209
}
210
211
+ delete this.reflections[reflection.id];
212
213
214
/**
0 commit comments