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

x/valibot/mod.ts>LazySchemaAsync

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

Lazy schema async type.

Type Parameters

TWrapped extends BaseSchema<unknown, unknown, BaseIssue<unknown>> | BaseSchemaAsync<unknown, unknown, BaseIssue<unknown>>

Properties

readonly
type: "lazy"

The schema type.

readonly
reference: lazyAsync

The schema reference.

readonly
expects: "unknown"

The expected property.

readonly
getter: (input: unknown) => MaybePromise<TWrapped>

The schema getter.