Package: effect
Module: ParseResult
Represents an issue returned by the ArrayFormatter formatter.
Signature
export interface ArrayFormatterIssue {
/**
* The tag identifying the type of parse issue.
*/
readonly _tag: ParseIssue["_tag"]
/**
* The path to the property where the issue occurred.
*/
readonly path: ReadonlyArray<PropertyKey>
/**
* A descriptive message explaining the issue.
*/
readonly message: string
}
Since v3.10.0