We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0304c26 commit da4f8fdCopy full SHA for da4f8fd
src/lib/converter/plugins/CommentPlugin.ts
@@ -147,7 +147,7 @@ export class CommentPlugin extends ConverterComponent {
147
private get excludeNotDocumentedKinds(): number {
148
this._excludeKinds ??= this.application.options
149
.getValue("excludeNotDocumentedKinds")
150
- .reduce((a, b) => a | (ReflectionKind[b] as number), 0);
+ .reduce((a, b) => a | ReflectionKind[b], 0);
151
return this._excludeKinds;
152
}
153
0 commit comments