Skip to main content
Module

x/valibot/mod.ts>OptionalSchemaAsync

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

Optional 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> | undefined
definition: BaseSchemaAsync<Input<TWrapped> | undefined, TOutput> & { type: "optional"; wrapped: TWrapped; default: TDefault; }