deoptional: T extends ZodOptional<infer U>
    ? deoptional<U>
    : T extends ZodNullable<infer U> ? ZodNullable<deoptional<U>> : T

Type Parameters