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

x/valibot/mod.ts>OptionalSchemaAsync

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

Optional schema async type.

Type Parameters

TWrapped extends BaseSchema<unknown, unknown, BaseIssue<unknown>> | BaseSchemaAsync<unknown, unknown, BaseIssue<unknown>>
TDefault extends DefaultAsync<TWrapped, undefined>

Properties

readonly
type: "optional"

The schema type.

readonly
reference: optionalAsync

The schema reference.

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

The expected property.

readonly
wrapped: TWrapped

The wrapped schema.

readonly
default: TDefault

The default value.