Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/valibot/src/schemas/index.ts>ArraySchemaAsync

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

Array schema async type.

Type Parameters

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