Skip to main content
Module

x/valibot/mod.ts>NullableSchemaAsync

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

Nullable schema async type.

Type Parameters

TWrappedSchema extends BaseSchema | BaseSchemaAsync
optional
TOutput = Output<TWrappedSchema> | null
definition: BaseSchemaAsync<Input<TWrappedSchema> | null, TOutput> & { schema: "nullable"; wrapped: TWrappedSchema; }