Skip to main content
Module

x/valibot/mod.ts>LiteralSchema

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

Literal schema type.

Type Parameters

TLiteralValue extends string | number
optional
TOutput = TLiteralValue
definition: BaseSchema<TLiteralValue, TOutput> & { schema: "literal"; literal: TLiteralValue; }