Skip to main content
Module

x/valibot/mod.ts>ArraySchema

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
type alias ArraySchema
Re-export
import { type ArraySchema } from "https://deno.land/x/valibot@v0.28.1/mod.ts";

Array schema type.

Type Parameters

TItem extends BaseSchema
optional
TOutput = Output<TItem>[]
definition: BaseSchema<Input<TItem>[], TOutput> & { type: "array"; item: TItem; message: ErrorMessage | undefined; pipe: Pipe<Output<TItem>[]> | undefined; }