Skip to main content
Module

x/valibot/mod.ts>PipeResult

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

Pipe result type.

definition: { output: TOutput; issue?: undefined; } | { output?: undefined; issue: Pick<Issue, "validation" | "message" | "input">; }