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

x/valibot/mod.ts>SchemaWithBrand

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

Schema with brand type.

Type Parameters

TSchema extends BaseSchema | BaseSchemaAsync
TName extends BrandName
definition: Omit<TSchema, "_types"> & { _types?: { input: Input<TSchema>; output: Output<TSchema> & Brand<TName>; }; }