(arrayType: z.ZodType)
| 181 | } |
| 182 | |
| 183 | function appendArrayType(arrayType: z.ZodType) { |
| 184 | appendType((arrayType._zod.def as z.core.$ZodArrayDef).element as z.ZodType, TypePrecedence.Object); |
| 185 | append("[]"); |
| 186 | } |
| 187 | |
| 188 | function appendObjectType(objectType: z.ZodType) { |
| 189 | append("{"); |
no test coverage detected