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

x/valibot/src/schemas/nullish/nullish.ts>NullishSchema

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

Nullish schema type.

Type Parameters

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