import { type TupleSchema } from "https://deno.land/x/valibot@v0.5.0/src/index.ts";
Tuple schema type.
Type Parameters
TTupleItems extends TupleShape
optional
TTupleRest extends BaseSchema | undefined = undefinedoptional
TOutput = TupleOutput<TTupleItems, TTupleRest>definition: BaseSchema<TupleInput<TTupleItems, TTupleRest>, TOutput> & { schema: "tuple"; tuple: { items: TTupleItems; rest: TTupleRest; }; }