Normalizes a SchemaInput to a ZodType at the type level.
type A = NormalizeSchema<z.ZodString>; // z.ZodStringtype B = NormalizeSchema<{ name: z.ZodString }>; // z.ZodObject<{ name: z.ZodString }> Copy
type A = NormalizeSchema<z.ZodString>; // z.ZodStringtype B = NormalizeSchema<{ name: z.ZodString }>; // z.ZodObject<{ name: z.ZodString }>
Normalizes a SchemaInput to a ZodType at the type level.