⚠️ Internal: This API is not publically exported by the package.

      The Index decode error indicates that there was an error at a specific index in an array or tuple. The errors field contains the decode errors for that index. This error is typically used when decoding an array or tuple with a schema that has constraints on the elements. For example, you might use an Index decode error to indicate that a specific element in an array did not match the expected type or value.

      Since

      1.0.0

      interface Index {
          _tag: "Index";
          errors: readonly [ParseErrors, ParseErrors];
          index: number;
      }

      Properties

      Properties

      _tag: "Index"
      errors: readonly [ParseErrors, ParseErrors]
      index: number