()
| 5080 | const ostring = () => stringType().optional(); |
| 5081 | const onumber = () => numberType().optional(); |
| 5082 | const oboolean = () => booleanType().optional(); |
| 5083 | |
| 5084 | export const coerce = { |
| 5085 | string: ((arg) => ZodString.create({ ...arg, coerce: true })) as (typeof ZodString)["create"], |