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

x/valibot/src/schemas/index.ts>RecursiveSchemaAsync

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

Recursive schema async type.

Type Parameters

TSchemaGetter extends () => BaseSchema | BaseSchemaAsync
optional
TOutput = Output<ReturnType<TSchemaGetter>>
definition: BaseSchemaAsync<Input<ReturnType<TSchemaGetter>>, TOutput> & { type: "recursive"; getter: TSchemaGetter; }