We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d4e65f commit 58f010cCopy full SHA for 58f010c
packages/schema-generator/src/type-utils.ts
@@ -311,7 +311,10 @@ export function getNamedTypeKey(
311
// The name "Record" or "Box" is meaningless without the type parameters - what matters is the
312
// resolved/instantiated type structure
313
const typeWithAlias = type as TypeWithInternals;
314
- if (typeWithAlias.aliasTypeArguments && typeWithAlias.aliasTypeArguments.length > 0) {
+ if (
315
+ typeWithAlias.aliasTypeArguments &&
316
+ typeWithAlias.aliasTypeArguments.length > 0
317
+ ) {
318
return undefined;
319
}
320
0 commit comments