Skip to main content
Module

x/valibot/src/types/schema.ts>BaseSchema

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

Base schema type.

Type Parameters

TInput
TOutput
TIssue extends BaseIssue<unknown>

Properties

readonly
kind: "schema"

The object kind.

readonly
type: string

The schema type.

readonly
reference: (...args: any[]) => BaseSchema<unknown, unknown, BaseIssue<unknown>>

The schema reference.

readonly
expects: string

The expected property.

readonly
async: false

Whether it's async.

readonly
optional
_types: { readonly input: TInput; readonly output: TOutput; readonly issue: TIssue; }

Input, output and issue type.

Methods

_run(dataset: Dataset<unknown, never>, config: Config<TIssue>): Dataset<TOutput, TIssue>

Parses unknown input.