Skip to main content
Module

x/valibot/mod.ts>SchemaWithTransformAsync

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
type alias SchemaWithTransformAsync
import { type SchemaWithTransformAsync } from "https://deno.land/x/valibot@v0.28.1/mod.ts";

Schema with transform async type.

Type Parameters

TSchema extends BaseSchema | BaseSchemaAsync
TOutput
definition: Omit<TSchema, "async" | "_parse" | "_types"> & { async: true; _types?: { input: Input<TSchema>; output: TOutput; }; _parse(input: unknown, config?: SchemaConfig): Promise<SchemaResult<TOutput>>; }