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

x/valibot/src/types.ts>PipeResult

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

Pipe result type.

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