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

x/valibot/src/schemas/nullish/nullishAsync.ts>NullishSchemaAsync

The modular and type safe schema library for validating structural data 🤖
Go to Latest
type alias NullishSchemaAsync
import { type NullishSchemaAsync } from "https://deno.land/x/valibot@v0.24.0/src/schemas/nullish/nullishAsync.ts";

Nullish schema async type.

Type Parameters

TWrapped extends BaseSchema | BaseSchemaAsync
optional
TDefault extends Input<TWrapped> | (() => Input<TWrapped> | Promise<Input<TWrapped> | undefined> | undefined) | undefined = undefined
optional
TOutput = Awaited<TDefault> extends Input<TWrapped> ? Output<TWrapped> : Output<TWrapped> | null | undefined
definition: BaseSchemaAsync<Input<TWrapped> | null | undefined, TOutput> & { type: "nullish"; wrapped: TWrapped; default: TDefault; }