Skip to main content
Module

x/valibot/mod.ts>SchemaWithTransform

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

Schema with transform type.

Type Parameters

TSchema extends BaseSchema
TOutput
definition: Omit<TSchema, "_types"> & { _types?: { input: Input<TSchema>; output: TOutput; }; }