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

x/valibot/src/index.ts>getPipeIssues

The modular and type safe schema library for validating structural data 🤖
Go to Latest
function getPipeIssues
Re-export
import { getPipeIssues } from "https://deno.land/x/valibot@v0.19.0/src/index.ts";

Returns the pipeline result object with issues.

Parameters

validation: string

The validation name.

The error message.

input: unknown

The input value.

Returns

{ issues: Pick<Issue,
| "validation"
| "message"
| "input"
| "path"
>[]; }

The pipeline result object.