Skip to content

Commit 503cf0b

Browse files
committed
lint
1 parent f425a67 commit 503cf0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/mcp-server/utils/type-utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ export function reflectionIsReferencing(
2525
) ||
2626
symbol.signatures?.some((s) => reflectionIsReferencing(s, typeName)) ||
2727
// Check children (properties, methods, etc.) for references
28-
symbol.children?.some((child) => reflectionIsReferencing(child, typeName));
28+
symbol.children?.some((child) =>
29+
reflectionIsReferencing(child, typeName),
30+
);
2931
},
3032
signature: (refl) => {
3133
result =

0 commit comments

Comments
 (0)