import { z } from "https://deno.land/x/zod@v3.20.5/index.ts";
const { ZodObject } = z;
Type Parameters
Augmentation extends ZodRawShape
NewOutput extends util.flatten<[k in keyof Augmentation | keyof Output]: k extends keyof Augmentation ? Augmentation[k]["_output"] : k extends keyof Output ? Output[k] : never>
NewInput extends util.flatten<[k in keyof Augmentation | keyof Input]: k extends keyof Augmentation ? Augmentation[k]["_input"] : k extends keyof Input ? Input[k] : never>
Parameters
augmentation: Augmentation
Returns
ZodObject<extendShape<T, Augmentation>, UnknownKeys, Catchall, NewOutput, NewInput>