import { type z } from "https://deno.land/x/zod@v3.20.5/index.ts";
const { deoptional } = z;
Type Parameters
T extends ZodTypeAny
definition: T extends ZodOptional<infer U> ? deoptional<U> : T extends ZodNullable<infer U> ? ZodNullable<deoptional<U>> : T