( schema: Schema.Schema<A, I, never>, options?: AST.ParseOptions )
| 462 | * @since 3.10.0 |
| 463 | */ |
| 464 | export const decodeUnknownSync = <A, I>( |
| 465 | schema: Schema.Schema<A, I, never>, |
| 466 | options?: AST.ParseOptions |
| 467 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => A => getSync(schema.ast, true, options) |
| 468 | |
| 469 | /** |
| 470 | * @category decoding |