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

x/valibot/mod.ts>NullableSchemaAsync

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
interface NullableSchemaAsync
implements BaseSchemaAsync<Input<TWrapped> | null, TOutput>
Re-export
import { type NullableSchemaAsync } from "https://deno.land/x/valibot@v0.30.0/mod.ts";

Nullable schema async type.

Type Parameters

TWrapped extends BaseSchema | BaseSchemaAsync
optional
TDefault extends DefaultAsync<TWrapped> = undefined
optional
TOutput = TDefault extends Input<TWrapped> | (() => Input<TWrapped> | Promise<Input<TWrapped>>) ? Output<TWrapped> : Output<TWrapped> | null

Properties

type: "nullable"

The schema type.

wrapped: TWrapped

The wrapped schema.

default: TDefault

Returns the default value.