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.18.0/mod.ts";

Pipe result type.

definition: { output: TOutput; issues?: undefined; } | { output?: undefined; issues: Pick<Issue,
| "validation"
| "message"
| "input"
| "path"
>[]; }