import { type TupleSchema } from "https://deno.land/x/valibot@v0.30.0/src/schemas/tuple/tuple.ts";
Tuple schema type.
Type Parameters
TItems extends TupleItems
optional
TRest extends BaseSchema | undefined = undefinedoptional
TOutput = TupleOutput<TItems, TRest>Properties
items: TItems
The tuple items schema.
rest: TRest
The tuple rest schema.
message: ErrorMessage | undefined
The error message.
pipe: Pipe<TupleOutput<TItems, TRest>> | undefined
The validation and transformation pipeline.