import { type TupleSchemaAsync } from "https://deno.land/x/valibot@v0.30.0/src/schemas/tuple/tupleAsync.ts";
Tuple schema async type.
Type Parameters
TItems extends TupleItemsAsync
optional
TRest extends BaseSchema | BaseSchemaAsync | 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: PipeAsync<TupleOutput<TItems, TRest>> | undefined
The validation and transformation pipeline.