( schema: Schema.Schema<A, I, never>, options?: AST.ParseOptions )
| 480 | * @since 3.10.0 |
| 481 | */ |
| 482 | export const decodeUnknownEither = <A, I>( |
| 483 | schema: Schema.Schema<A, I, never>, |
| 484 | options?: AST.ParseOptions |
| 485 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Either.Either<A, ParseIssue> => |
| 486 | getEither(schema.ast, true, options) |
| 487 | |
| 488 | /** |
| 489 | * @category decoding |
nothing calls this directly
no test coverage detected