Skip to content

Commit 58f010c

Browse files
committed
fmt
1 parent 4d4e65f commit 58f010c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/schema-generator/src/type-utils.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,10 @@ export function getNamedTypeKey(
311311
// The name "Record" or "Box" is meaningless without the type parameters - what matters is the
312312
// resolved/instantiated type structure
313313
const typeWithAlias = type as TypeWithInternals;
314-
if (typeWithAlias.aliasTypeArguments && typeWithAlias.aliasTypeArguments.length > 0) {
314+
if (
315+
typeWithAlias.aliasTypeArguments &&
316+
typeWithAlias.aliasTypeArguments.length > 0
317+
) {
315318
return undefined;
316319
}
317320

0 commit comments

Comments
 (0)