bupkis
    Preparing search index...

    Interface $ZodObjectInternals<Shape, Config>

    interface $ZodObjectInternals<
        out Shape extends Readonly<$ZodShape> = Readonly<$ZodShape>,
        out Config extends $ZodObjectConfig = $ZodObjectConfig,
    > {
        def: $ZodObjectDef<Shape>;
        config: Config;
        output: $InferObjectOutput<Shape, Config["out"]>;
        input: $InferObjectInput<Shape, Config["in"]>;
        version: { major: 4; minor: 1; patch: number };
        toJSONSchema?: () => unknown;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Schema definition.

    config: Config
    version: { major: 4; minor: 1; patch: number }

    The @zod/core version of this schema

    toJSONSchema?: () => unknown

    An optional method used to override toJSONSchema logic.