( schema: Schema.Schema<A, I, never>, options?: AST.ParseOptions )
| 531 | * @since 3.10.0 |
| 532 | */ |
| 533 | export const encodeUnknownEither = <A, I>( |
| 534 | schema: Schema.Schema<A, I, never>, |
| 535 | options?: AST.ParseOptions |
| 536 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Either.Either<I, ParseIssue> => |
| 537 | getEither(schema.ast, false, options) |
| 538 | |
| 539 | /** |
| 540 | * @category encoding |
nothing calls this directly
no test coverage detected