We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f425a67 commit 503cf0bCopy full SHA for 503cf0b
src/mcp-server/utils/type-utils.ts
@@ -25,7 +25,9 @@ export function reflectionIsReferencing(
25
) ||
26
symbol.signatures?.some((s) => reflectionIsReferencing(s, typeName)) ||
27
// Check children (properties, methods, etc.) for references
28
- symbol.children?.some((child) => reflectionIsReferencing(child, typeName));
+ symbol.children?.some((child) =>
29
+ reflectionIsReferencing(child, typeName),
30
+ );
31
},
32
signature: (refl) => {
33
result =
0 commit comments