( schema: Schema.Schema<A, I, R>, options?: AST.ParseOptions )
| 628 | * @since 3.10.0 |
| 629 | */ |
| 630 | export const validateEither = <A, I, R>( |
| 631 | schema: Schema.Schema<A, I, R>, |
| 632 | options?: AST.ParseOptions |
| 633 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Either.Either<A, ParseIssue> => |
| 634 | getEither(AST.typeAST(schema.ast), true, options) |
| 635 | |
| 636 | /** |
| 637 | * @category validation |
nothing calls this directly
no test coverage detected