Skip to main content
Module

x/valibot/mod.ts>specialAsync

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

Creates an async special schema.

Parameters

check: (input: unknown) => boolean | Promise<boolean>

The type check function.

optional
pipe: PipeAsync<TInput>

A validation and transformation pipe.

Returns

An async special schema.

Creates a special schema.

Parameters

check: (input: unknown) => boolean | Promise<boolean>

The type check function.

optional
error: string

The error message.

optional
pipe: PipeAsync<TInput>

A validation and transformation pipe.