Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/valibot/mod.ts>tupleWithRest

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Latest
function tupleWithRest
import { tupleWithRest } from "https://deno.land/x/valibot@v0.35.0/mod.ts";

Creates a tuple with rest schema.

Type Parameters

TItems extends TupleItems
TRest extends BaseSchema<unknown, unknown, BaseIssue<unknown>>

Parameters

items: TItems

The items schema.

rest: TRest

The rest schema.

Returns

A tuple with rest schema.

Creates a tuple with rest schema.

Type Parameters

TItems extends TupleItems
TRest extends BaseSchema<unknown, unknown, BaseIssue<unknown>>
TMessage extends ErrorMessage<TupleWithRestIssue> | undefined

Parameters

items: TItems

The items schema.

rest: TRest

The rest schema.

message: TMessage

The error message.

Returns

A tuple with rest schema.