Skip to main content
Module

x/valibot/mod.ts>CustomValidationAsync

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

Custom validation async type.

definition: BaseValidationAsync<TInput> & { type: "custom"; requirement: (input: TInput) => Promise<boolean>; }