Skip to main content
Module

x/valibot/mod.ts>ArraySchemaAsync

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
type alias ArraySchemaAsync
Re-export
import { type ArraySchemaAsync } from "https://deno.land/x/valibot@v0.21.0/mod.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; pipe: PipeAsync<Output<TItem>[]> | undefined; }