( schema: Schema.Schema<A, I, never>, options?: AST.ParseOptions )
| 513 | * @since 3.10.0 |
| 514 | */ |
| 515 | export const encodeUnknownSync = <A, I>( |
| 516 | schema: Schema.Schema<A, I, never>, |
| 517 | options?: AST.ParseOptions |
| 518 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => I => getSync(schema.ast, false, options) |
| 519 | |
| 520 | /** |
| 521 | * @category encoding |