Skip to main content
Module

x/valibot/mod.ts>transformAsync

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

Adds an async transformation step to a schema, which is executed at the end of parsing and can change the output type.

Parameters

schema: TSchema

The schema to be used.

action: (input: Output<TSchema>, info: TransformInfo) => TOutput | Promise<TOutput>

The transformation action.

optional
pipe: PipeAsync<TOutput>

A validation pipe.

Adds an async transformation step to a schema, which is executed at the end of parsing and can change the output type.

Parameters

schema: TSchema

The schema to be used.

action: (input: Output<TSchema>, info: TransformInfo) => TOutput | Promise<TOutput>

The transformation action.

optional
validation: BaseSchema<TOutput> | BaseSchemaAsync<TOutput>

A validation schema.