( schema: Schema.Schema<A, I, never>, options?: AST.ParseOptions )
| 471 | * @since 3.10.0 |
| 472 | */ |
| 473 | export const decodeUnknownOption = <A, I>( |
| 474 | schema: Schema.Schema<A, I, never>, |
| 475 | options?: AST.ParseOptions |
| 476 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Option.Option<A> => getOption(schema.ast, true, options) |
| 477 | |
| 478 | /** |
| 479 | * @category decoding |
nothing calls this directly
no test coverage detected