( schema: Schema.Schema<A, I, never>, options?: AST.ParseOptions )
| 522 | * @since 3.10.0 |
| 523 | */ |
| 524 | export const encodeUnknownOption = <A, I>( |
| 525 | schema: Schema.Schema<A, I, never>, |
| 526 | options?: AST.ParseOptions |
| 527 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Option.Option<I> => getOption(schema.ast, false, options) |
| 528 | |
| 529 | /** |
| 530 | * @category encoding |
nothing calls this directly
no test coverage detected