Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
vanyauhalin committed Nov 20, 2024
1 parent b9fde1e commit 7848ec9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/typedoc-declaration/lib/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {firstSentence} from "@onlyoffice/mdast-util-first-sentence"
import {type Result} from "@onlyoffice/result"
import {
isCallSignatureReflection,
isConstructorReflection,
isConstructorSignatureReflection,
isContainerReflection,
isDeclarationReflection,
Expand Down Expand Up @@ -420,6 +421,14 @@ export function shakeItems(o: J.Reflection, c: Item[]): Item[] {
continue
}

if (isConstructorReflection(s)) {
continue
}

if (isMethodReflection(s)) {
continue
}

d = t
rc.push(t)
continue
Expand Down

0 comments on commit 7848ec9

Please sign in to comment.