Skip to main content
Module

x/domain_functions/src/types.ts>ParserIssue

Decouple your business logic from your framework. With first-class type inference from end to end.
Go to Latest
type alias ParserIssue
import { type ParserIssue } from "https://deno.land/x/domain_functions@v2.6.0/src/types.ts";

A parsing error when validating the input or environment schemas. This will be transformed into a SchemaError before being returned from the domain function. It is usually not visible to the end user unless one wants to write an adapter for a schema validator.

definition: { path: PropertyKey[]; message: string; }