diff --git a/packages/core/src/schema.ts b/packages/core/src/schema.ts index c5824454..3201654a 100644 --- a/packages/core/src/schema.ts +++ b/packages/core/src/schema.ts @@ -342,7 +342,8 @@ type InferSpecField = : T extends SchemaType<"propsOf", infer Path> ? InferPropsOfType : T extends SchemaType<"any"> - ? unknown + ? // eslint-disable-next-line @typescript-eslint/no-explicit-any + any : unknown; type InferRefType = Path extends "catalog.components"