Skip to main content
Module

x/valibot/mod.ts>BaseValidationAsync

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

Base validation async type.

Type Parameters

optional
TInput = any
definition: { expects: string | null; message: ErrorMessage | undefined; async: true; _parse(input: TInput): Promise<PipeActionResult<TInput>>; }