Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/valibot/mod.ts>OptionalSchema

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

Optional schema type.

Type Parameters

TWrapped extends BaseSchema<unknown, unknown, BaseIssue<unknown>>
TDefault extends Default<TWrapped, undefined>

Properties

readonly
type: "optional"

The schema type.

readonly
reference: optional

The schema reference.

readonly
expects: `${TWrapped["expects"]} | undefined`

The expected property.

readonly
wrapped: TWrapped

The wrapped schema.

readonly
default: TDefault

The default value.