Interface ZodIntersectionDef<T, U>

interface ZodIntersectionDef<
    T extends Zod.z.ZodTypeAny = Zod.z.ZodTypeAny,
    U extends Zod.z.ZodTypeAny = Zod.z.ZodTypeAny,
> {
    description?: string;
    errorMap?: Zod.z.ZodErrorMap;
    left: T;
    right: U;
    typeName: ZodIntersection;
}

Type Parameters

Hierarchy (View Summary)

Properties

description?: string
errorMap?: Zod.z.ZodErrorMap
left: T
right: U
typeName: ZodIntersection