( schema: Schema<A, I, never>, options?: ParseOptions )
| 572 | * @since 3.10.0 |
| 573 | */ |
| 574 | export const decodeUnknownEither = <A, I>( |
| 575 | schema: Schema<A, I, never>, |
| 576 | options?: ParseOptions |
| 577 | ) => { |
| 578 | const decodeUnknownEither = ParseResult.decodeUnknownEither(schema, options) |
| 579 | return (u: unknown, overrideOptions?: ParseOptions): either_.Either<A, ParseResult.ParseError> => |
| 580 | either_.mapLeft(decodeUnknownEither(u, overrideOptions), ParseResult.parseError) |
| 581 | } |
| 582 | |
| 583 | /** |
| 584 | * @category decoding |
no outgoing calls
no test coverage detected