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

x/valibot/src/types.ts>BaseSchema

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

Base schema type.

Type Parameters

optional
TInput = any
optional
TOutput = TInput
definition: { async: false; types?: { input: TInput; output: TOutput; }; parse(input: unknown, info?: ParseInfo): TOutput; }