Zod naming convention
What is the best naming convention for zod?
both capitalized
const Object = z.object(...)
type Object = z.infer<...>
-or-
only type capitalized
const object = z.object(...)
type Object = z.infer<...>
both capitalized
const Object = z.object(...)
type Object = z.infer<...>
-or-
only type capitalized
const object = z.object(...)
type Object = z.infer<...>
