( schema: Schema.Schema<A, I, R>, options?: AST.ParseOptions )
| 553 | * @since 3.10.0 |
| 554 | */ |
| 555 | export const encodeUnknown = <A, I, R>( |
| 556 | schema: Schema.Schema<A, I, R>, |
| 557 | options?: AST.ParseOptions |
| 558 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Effect.Effect<I, ParseIssue, R> => |
| 559 | getEffect(schema.ast, false, options) |
| 560 | |
| 561 | /** |
| 562 | * @category decoding |
no test coverage detected