bupkis
    Preparing search index...

    Interface $ZodTupleInternals<T, Rest>

    interface $ZodTupleInternals<
        T extends TupleItems = readonly z.core.$ZodType[],
        Rest extends SomeType | null = z.core.$ZodType | null,
    > {
        def: $ZodTupleDef<T, Rest>;
        output: [
            ...TupleOutputTypeWithOptionals<T>[],
            ...(Rest extends SomeType ? z.core.output<Rest<Rest>>[] : [])[],
        ];
        input: [
            ...TupleInputTypeWithOptionals<T>[],
            ...(Rest extends SomeType ? z.core.input<Rest<Rest>>[] : [])[],
        ];
        version: { major: 4; minor: 1; patch: number };
        toJSONSchema?: () => unknown;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Schema definition.

    output: [
        ...TupleOutputTypeWithOptionals<T>[],
        ...(Rest extends SomeType ? z.core.output<Rest<Rest>>[] : [])[],
    ]
    input: [
        ...TupleInputTypeWithOptionals<T>[],
        ...(Rest extends SomeType ? z.core.input<Rest<Rest>>[] : [])[],
    ]
    version: { major: 4; minor: 1; patch: number }

    The @zod/core version of this schema

    toJSONSchema?: () => unknown

    An optional method used to override toJSONSchema logic.