effect-io-ai

Package: effect
Module: ParseResult

ParseResult.ArrayFormatterIssue

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
}

Source

Since v3.10.0