bupkis
    Preparing search index...

    Interface $ZodIntersectionInternals<A, B>

    interface $ZodIntersectionInternals<
        A extends SomeType = z.core.$ZodType,
        B extends SomeType = z.core.$ZodType,
    > {
        def: $ZodIntersectionDef<A, B>;
        output: z.core.output<A> & z.core.output<B>;
        input: z.core.input<A> & z.core.input<B>;
        version: { major: 4; minor: 1; patch: number };
        toJSONSchema?: () => unknown;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Schema definition.

    output: z.core.output<A> & z.core.output<B>
    input: z.core.input<A> & z.core.input<B>
    version: { major: 4; minor: 1; patch: number }

    The @zod/core version of this schema

    toJSONSchema?: () => unknown

    An optional method used to override toJSONSchema logic.